How to config nfs client in netware 6 SP5

Hello, I'm with some problems to find some information. It becomes difficult to find on a system already without support. I need to access an NFS from NetWare 6 SP5, and the truth can not find anything, so some links are broken. Anyone have any idea.

The NFS documentation for NetWare 6.0 can be found:
Novell Documentation: NetWare 6 - Working with UNIX Machines
Now this is about th eNFS service.
From your message title, are you talking about connecting a NFS client to a NetWare server, or about using NetWare as an NFS client? In the later case, you would need tu purchase an extra product callled NetWare NFS gateway.

Similar Messages

  • How do I disable NFS client in Solaris 10

    I am trying to disable NFS client in Solaris 10. In Solaris 9 I would simply rename /etc/rc2.d/S73nfs.client to /etc/rc2.d/s73nfs.client
    Since /etc/rc2.d/nfs.client does not seem to exist in 10 I'm wondering how to do this.
    Thanks in advance for the help.
    Max

    Since /etc/rc2.d/nfs.client does not seem to exist in
    10 I'm wondering how to do this.Read up on the new Solaris 10 service management faciities. Info at http://docs.sun.com/ There are a couple of tutorial doc's at bigadmin

  • How to config the telephony button in CRM 5.0 (win client)

    Dear Sir,
    I can't find the documents how to config the telephony button in CRM5.0 (win clicent). Please kindly advise.
    Thank you and best regards,
    Vimol

    i can find the solution

  • NFS client problem "The document X could not be saved"

    Hi,
    Briefly: Debian Linux server (Lenny), OS X 10.5.7 client. NFS server config is simple enough:
    /global 192.168.72.0/255.255.255.0(rw,rootsquash,sync,insecure,no_subtreecheck)
    This works well without our Linux clients, and generally it is Ok with my OS X iMac. OS X NFS client is configured through Directory Utility, with no "Advanced" options. Client can authenticate with NIS nicely, and NFS, on the whole, works. I can manipulate files with Finder, and create files on the commandline with the usual tools.
    The problem is TextEdit, iWork and other Cocoa apps (not all). They can save a file once, but subsequently saving a file produces a "The document X.txt cannot be saved" error dialog. If I remove the file on the commandline and re-save, then the save succeeds. It is as if re-saving the document with the same name as an existing file causes issues. There seems to be no problem with file permissions. When I save in a non NFS exported directory everything is fine.
    Has anyone spotted this problem before?
    Lawrence

    I doubt that "OS X NFS is fundamentally broken" seeing as how many people use it successfully.
    tcpdump (or more preferably: wireshark) might be useful in tracking down what's happening between the NFS client and NFS server. Sometimes utilities like fs_usage can be useful in tracking down the application/filesystem interaction.
    It's usually a good idea to check the logs (e.g. /var/log/system.log) for possible clues in case an error/warning is getting logged around the same time as the failure. And if you can't reproduce the problem from the command line, then that can be a good indication that the issue is with the higher layers of the system.
    Oh, and if you think there's a bug in the OS, it never hurts to officially tell Apple that via a bug report:
    http://developer.apple.com/bugreporter/
    Even if it isn't a bug, they should still be able to work with you to help you figure out what's going on. They'll likely want know details about what exactly isn't working and will probably ask for things like a tcpdump capture file and/or an fs_usage trace.
    HTH
    --macko

  • Is NFS client data cacheing possible?

    Yesterday, I was viewing an HD 1080 video with VLC, and noticed that Activity Monitor was showing about 34MB/sec from my NAS box. My NAS box runs OpenSolaris (I was at Sun for over 20 years, and some habits die hard), and the 6GB video file was mounted on my iMac 27" (10.7.2) using NFSv3 (yes, I have a gigabit network).
    Being a long term UNIX performance expert and regular DTrace user, I was able to confirm that VLC on Lion was reading the file at about 1.8MB/sec, and that the NFS server was being hit at 34MB/sec. Further investigation showed that the NFS client (Lion) was requesting each 32KB block 20 times!
    Note: the default read size for NFSv3 over TCP is 32KB).
    Digging deeper, I found that VLC was reading the file in 1786 byte blocks. I have concluded that Lion's NFSv3 client implement at least one 32KB read for each application call to read(2), and that no data is cached betweem reads (this fully accounts for the 20x overhead in this case).
    A workaround is to use say rsize=1024, which will increase the number of NFS ops but dramatically reduce the bandwidth consumption (which means I might yet be able to watch HD video over wifi).
    That VLC should start issuing such small reads is a bug, so I have also written some notes in the vlc.org forums. But client side cacheing would hide the issue from the network.
    So, the big question: is it possible to enable NFS client data cacheing in Lion?

    The problem solved itself mysteriously overnight, without any interference from myself.
    The systems are again perfectly happily mounting the file space (650 clients of them all at the same time
    mounting up to 6 filesystems from the same server) and the server is happily serving again as it has been for the past 2 years.
    My idea is that there has been a network configuration clash, but considering that the last modification of NIS hosts file was about 4 weeks ago and the latest server was installed then and has been serving since then, I have no
    idea how such clash could happen without interference in the config files. It is a mystery and I will have to make
    every effort to unravel it. One does not really like to sweep incidents like that un-investigated under the carpet.
    If anybody has any suggestions and thoughts on this matter please post them here.
    Lydia

  • How to Create NFS in Linux

    Hi all,
    I am very much new to Linux Admin, i am basically working as a apps dba, i have two servers, i installed Oracle Linux on that, now i want to create NFS file system, i have created u01 mount pioint in Linux1 and u01 in linux 2 with same space , i am able to ping both servers and i am able to do ftp both servers, could any one explain me how to create NFS in linux servers,
    Thanks

    On the server, edit the file <tt>/etc/exports</tt> to list the directories you
    want NFS to offer, and to which systems they should be offered:
    /u01    *(rw,sync,no_root_squash)
    /u02    *(rw,sync,no_root_squash)
    /u03    *(rw,sync,no_root_squash)The <tt>*</tt> matches any system/network and the <tt>(rw)</tt> says let the
    other systems read and write the tree, the <tt>sync</tt> forces the server NFS
    to finish the I/O before telling the clients the I/O is done, and the optional
    <tt>no_root_squash</tt> lets root on a client system access the files as if
    they were root on the NFS server; this may not be what you want.
    # /sbin/chkconfig nfs on
    # /sbin/service nfs startOn the NFS client, edit the <tt>/etc/fstab</tt> file to have lines that look
    like this:
    myserver:/u01 /u01 nfs rw,rsize=32768,wsize=32768,sync,nointr,hard 0 0
    myserver:/u02 /u02 nfs rw,rsize=32768,wsize=32768,sync,nointr,hard 0 0
    myserver:/u03 /u03 nfs rw,rsize=32768,wsize=32768,sync,nointr,hard 0 0and then from the client make sure you can see the offered files:
    # /usr/sbin/showmount -e myserverand if you can, do this on the client:
    # mkdir /u01 /u02 /u03
    # mount /u01
    # mount /u02
    # mount /u03If the clients ever reboot, the NFS files will be mounted automatically and you
    will not need these last 3 commands.
    The RDBMS has its own requirements for the options in the <tt>/etc/fstab</tt>
    entry, so the <tt>rw,rsize=...</tt> example may need to be adjusted a little.
    Happy NFS'ing.

  • [solved] NFS client will not work correctly

    I have all my $HOME on an NFS Server. So long I used suse and debian, now I want switch to arch but the nfs-client ist not working correctly:
    I start "portmap nfslock nfsd netfs" over rc.conf. When I do a "rpcinfo -p <ip-arch-system>" I got the following
    stefan:/home/stefan # rpcinfo -p 192.168.123.3
       Program Vers Proto   Port
        100000    2   tcp    111  portmapper
        100000    2   udp    111  portmapper
        100021    1   udp  32768  nlockmgr
        100021    3   udp  32768  nlockmgr
        100021    4   udp  32768  nlockmgr
        100003    2   udp   2049  nfs
        100003    3   udp   2049  nfs
        100003    4   udp   2049  nfs
        100021    1   tcp  48988  nlockmgr
        100021    3   tcp  48988  nlockmgr
        100021    4   tcp  48988  nlockmgr
        100003    2   tcp   2049  nfs
        100003    3   tcp   2049  nfs
        100003    4   tcp   2049  nfs
        100005    3   udp    891  mountd
        100005    3   tcp    894  mountd
    As you see "status" is missing, so the statd is not running. It sould look like the result on my suse box:
    stefan:/home/stefan # rpcinfo -p 192.168.123.2
       Program Vers Proto   Port
        100000    2   tcp    111  portmapper
        100000    2   udp    111  portmapper
        100024    1   udp  32768  status
        100021    1   udp  32768  nlockmgr
        100021    3   udp  32768  nlockmgr
        100021    4   udp  32768  nlockmgr
        100024    1   tcp  35804  status
        100021    1   tcp  35804  nlockmgr
        100021    3   tcp  35804  nlockmgr
        100021    4   tcp  35804  nlockmgr
    There is the "status" line and so the statd is running.
    How can I fix that problem, so that statd ist running on my arch box too?
    Last edited by stka (2007-06-10 15:59:48)

    The Problem ist solved.
    I use ldap for authentication. During the setup of the ldapclient I copied the nsswitch.ldap to nsswitch.conf. But the line for "hosts:" was:
    hosts:          dns ldap
    but in my dns ist no localhost entry. After I changed this line to:
    hosts:          files dns ldap
    everything was ok. The statd is now running and I can start to migrate to archlinux ;-)

  • How to config helo in ims5.2

    hi
    how to config helo in ims5.2 and how to check the output of helo?
    thanks

    According to the SMTP protocol (from it's frist implementation RFC 821 - Aug. 1982, to the latest RFC 2821 - Apr 2001) , the HELO command is issued by a client to initiate a conversation with the server. Actually The HELO should be superseeded by the EHLO command but it's mantained for compatibility with earlier implementation as a fallback.
    Anyway if you intend to configure your server to use only the HELO command when initiating a conversation with another server, you could use the keyword nohelo on the channel, but it's not standard; instead you could use the keyword checkehlo that tries to initiate the conversation with the standard ehlo command, and if it doesn't succede, then it falls back to the old helo mechanism.
    give a look at the docs:
    http://docs.sun.com/source/816-6020-10/mta_conf.htm#1067326

  • How to config the Default Values in IT 2006

    Dear Gurus,
                      My Client requirement is if i create Absence quota they want default quotas values
    eg PL= 40
         CL=7
         SL=5
    Then how to config the Default Values in IT 2006
    Other wise where i have to assign in Quotas limit
    Please advised
    Regards
    MHPO

    Configure ur Absence Quotas with Selection group and assign the value of that selection group in Quomo
    and run  RPTQTA00
    Time Data Personnel Time Management IMG   Managing Time Accounts Using Attendance/AbsenceRecording and Administration   Define Absence Quota Types. Time Quota Types Quotas
    PersonnelIMG   Managing Time Time Data Recording and Administration Time Management   Calculating Absence Entitlements Accounts Using Attendance/Absence Quotas   Permit Quota Generation Without TimeAutomatic Accrual of Absence Quotas  Evaluation.
    Time Time Evaluation  Personnel Time Management IMG   Set Personnel Subarea Groupings for Time Recording.Evaluation Settings
    PersIMG  Time Data Recording and Administration onnel Time Management   Calculating AbsenceManaging Time Accounts Using Attendance/Absence Quotas   Set Base Entitlements  Rules for Generating Absence Quotas Entitlements  Base Entitlement for Absence Quota Generation.
    Personnel TimeIMG   Managing Time Accounts Time Data Recording and Administration Management   Rules for Calculating Absence Entitlements Using Attendance/Absence Quotas   Determine Validity and Deduction Periods.Generating Absence Quotas
    IMG  Managing Time Data Recording and Administration  Personnel Time Management   Calculating Absence EntitlementsTime Accounts Using Attendance/Absence Quotas   Define Set Base Entitlements  Rules for Generating Absence Quotas  Generation Rules for Quota Selection.
    Define Public Holiday Work Schedules  Personnel Time Management IMG  Classes
    Personnel Work Schedules  Personnel Time Management IMG   Group Personnel Subareas for the Work ScheduleSubarea Groupings
    IMG   Group Personnel Subarea Groupings  Work Schedules Personnel Time Management  Personnel Subareas for theDaily Work Schedule
     Daily Work Schedules  Work Schedules  Personnel Time Management IMG  Define Daily Work Schedules
    Work Personnel Time Management IMG   Define Period Work Schedules. Period Work Schedules Schedules
    IMG   Define Day Day Types  Work Schedules Personnel Time Management  Types.
     Day Types  Work Schedules  Personnel Time Management IMG  Define Day Types.
    Day Work Schedules  Personnel Time Management IMG   Define Special Days.Types
    Work Personnel Time Management IMG   Define Employee Subgroup Work Schedule Rules and Work Schedules Schedules  Groupings
    Work Work Schedules  Personnel Time Management IMG   Define Groupings for the Public HolidaySchedule Rules and Work Schedules  Calendar.
    Work Work Schedules  Personnel Time Management IMG   Set Work Schedule Rules and WorkSchedule Rules and Work Schedules  Schedules.
    Work Work Schedules  Personnel Time Management IMG   Generate Work Schedules ManuallySchedule Rules and Work Schedules
    IMG  Set Planned Working Time  Work Schedules  Personnel Time Management  Default Value for the Work Schedule.
     Personnel Time Management IMG   Set Default Value for Time Management Planned Working Time Work Schedules  Status.
    Time Data Recording and Personnel Time Management IMG   Define Personnel Subareas for Substitution Substitutions Administration  Types.
    Time Data Recording and Personnel Time Management IMG   Set Defaults for Substitution Types. Substitutions Administration
    IMG  Absences Time Data Recording and Administration  Personnel Time Management   Group Personnel Subareas for Attendances and Absence Catalog  Absences.
    Time Data Recording and Personnel Time Management IMG   Define Absence Types. Absence Catalog  Absences Administration
    IMG   Absences  Time Data Recording and Administration Personnel Time Management   Define Counting Classes for the Period Work Absence Counting Absence Catalog  Schedule.
    Time Data Recording and Personnel Time Management IMG   Rules for Absence Counting  Absence Catalog  Absences Administration   Group Employee Subgroups for Time Quotas.Absence Counting (New)
    IMG   Absences  Time Data Recording and Administration Personnel Time Management   Group Rules for Absence Counting (New)  Absence Counting Absence Catalog  Personnel Subareas for Time Quotas
    Time Personnel Time Management IMG   Absence Absence Catalog  Absences Data Recording and Administration   Define Rules for Rounding Counted Rules for Absence Counting (New) Counting  Absences
    Time Data Recording and Personnel Time Management IMG   Rules for Absence Counting  Absence Catalog  Absences Administration   Define Counting RulesAbsence Counting (New)
    Personnel TimeIMG   Absence Catalog Absences  Time Data Recording and Administration Management   Define Counting Rules  Rules for Absence Counting (New)  Absence Counting  Deduction rules for Absence quotas
    Time Personnel Time Management IMG   Absence Absence Catalog  Absences Data Recording and Administration   Assign Counting Rules to Absence Types.Counting
    Personnel TimeIMG   Attendances/Actual Working Time Data Recording and Administration Management   Define Attendance Types.Times
    Time Personnel Time Management IMG   Attendances/Actual Working Times Data Recording and Administration   Assign Counting Rules for Attendance counting (New) Attendance counting  Rules to Attendance Types.
    Time Data Personnel Time Management IMG   Managing Time Accounts Using Attendance/AbsenceRecording and Administration   Define Absence Quota Types. Time Quota Types Quotas
    PersonnelIMG   Managing Time Time Data Recording and Administration Time Management   Calculating Absence Entitlements Accounts Using Attendance/Absence Quotas   Permit Quota Generation Without TimeAutomatic Accrual of Absence Quotas  Evaluation.
    Time Time Evaluation  Personnel Time Management IMG   Set Personnel Subarea Groupings for Time Recording.Evaluation Settings
     Time Data Recording and Administration  Personnel Time Management IMG  Managing  Calculating AbsenceTime Accounts Using Attendance/Absence Quotas   Set Base Entitlements  Rules for Generating Absence Quotas Entitlements  Base Entitlement for Absence Quota Generation.
    Personnel TimeIMG   Managing Time Accounts Time Data Recording and Administration Management   Rules for Calculating Absence Entitlements Using Attendance/Absence Quotas   Determine Validity and Deduction Periods.Generating Absence Quotas
    IMG  Managing Time Data Recording and Administration  Personnel Time Management   Calculating Absence EntitlementsTime Accounts Using Attendance/Absence Quotas   Define Set Base Entitlements  Rules for Generating Absence Quotas  Generation Rules for Quota Selection.

  • Config manager client deployment script states the user is not a local admin

    Guys I posted here a while back in regards to deploying config manager clients in a wan environment.One of the suggestions was to use Jason Sandy's script. I finally got around to playing around with the script however I ran into some strange problems
    while testing.I am deploying this via the user side of group policy not the computer side. The script goes out and installs the client the problem is when our users click on any Citrix application the script pops up a message box stating "the user is
    not a local admin". I don't see how that's the case because this group of users all have local admin rights on there systems. If I run this script as a domain admin or under the system account everything works smoothly. Citrix is the only application
    that's doing this however this is a big deal because we deliver all of our enterprise apps using Citrix. So has anyone here ran into this before?

    Hi,
    As this thread has been quiet for a while, we assume that the issue has been resolved. At this time, we will mark it as "Answered" as the previous steps should be helpful for many similar scenarios.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • HOW TO: create NFS Archive log mount that runs parrallel

    I would like to know if there is a way i can create an NFS mount that would run parallel Archiving and not stop if NFS mount is stale. If possible then how to create or configure?
    Any and all help would be appreciated!
    Edited by: 886101 on Sep 19, 2011 8:45 AM

    On the server, edit the file <tt>/etc/exports</tt> to list the directories you
    want NFS to offer, and to which systems they should be offered:
    /u01    *(rw,sync,no_root_squash)
    /u02    *(rw,sync,no_root_squash)
    /u03    *(rw,sync,no_root_squash)The <tt>*</tt> matches any system/network and the <tt>(rw)</tt> says let the
    other systems read and write the tree, the <tt>sync</tt> forces the server NFS
    to finish the I/O before telling the clients the I/O is done, and the optional
    <tt>no_root_squash</tt> lets root on a client system access the files as if
    they were root on the NFS server; this may not be what you want.
    # /sbin/chkconfig nfs on
    # /sbin/service nfs startOn the NFS client, edit the <tt>/etc/fstab</tt> file to have lines that look
    like this:
    myserver:/u01 /u01 nfs rw,rsize=32768,wsize=32768,sync,nointr,hard 0 0
    myserver:/u02 /u02 nfs rw,rsize=32768,wsize=32768,sync,nointr,hard 0 0
    myserver:/u03 /u03 nfs rw,rsize=32768,wsize=32768,sync,nointr,hard 0 0and then from the client make sure you can see the offered files:
    # /usr/sbin/showmount -e myserverand if you can, do this on the client:
    # mkdir /u01 /u02 /u03
    # mount /u01
    # mount /u02
    # mount /u03If the clients ever reboot, the NFS files will be mounted automatically and you
    will not need these last 3 commands.
    The RDBMS has its own requirements for the options in the <tt>/etc/fstab</tt>
    entry, so the <tt>rw,rsize=...</tt> example may need to be adjusted a little.
    Happy NFS'ing.

  • How to make VPN client auto timeout when it still idle?

    How to make VPN client auto disconnect when it still idle?
    Hi,I found some user still connected the VPN evenif they dose not use the VPN resouse.
    I try to set a "idle timeout" for the VPN configuration.
    We use PIX515 8.0.3 and CISCO ACS 4.2 for the VPN's connection and authentication,and the user use cisco vpn client for the connection.
    I have tried many methods,but all failured.
    First,I configed "vpn-idel-timeout 5" on PIX.It can not worked.
    so,I add Radius(CISCO VPN 3000/ASA/PIX 7.0+) attribute "[026/3076/050] Authenticated-User-Idle-Timeout" on CISCO ACS,It still not worked.
    And I also add IETF RADIUS Attributes "[028] Idle-Timeout" on group setting on ACS,it always not worked.
    i found in vpn client's statistics,it always has some byte sended or received, i thought it maybe IPsec keepalive message or Radius message.
    This maybe the reason because the PIX or ACS think the vpn user is keep working.
    Can someone tell me how to make a "idle time out"?
    best regard.
    Roger

      here is the configuration on PIX,
    group-policy DfltGrpPolicy attributes
    wins-server value 10.0.0.67 10.0.0.68
    dns-server value 10.0.0.67 10.0.0.68
    vpn-simultaneous-logins 20
    vpn-idle-timeout 5
    split-tunnel-policy tunnelspecified
    split-tunnel-network-list value vpn-acl
    default-domain value mydomain.com
    address-pools value vpnpool group-policy DfltGrpPolicy attributes
    wins-server value 10.0.0.67 10.0.0.68
    dns-server value 10.0.0.67 10.0.0.68
    vpn-simultaneous-logins 20
    vpn-idle-timeout 5
    split-tunnel-policy tunnelspecified
    split-tunnel-network-list value vpn-acl
    default-domain value want-want.com
    address-pools value vpnpool

  • How to config CSM load balance of http combined https

    In this case,when I config CSM for load balance http and https service separately was ok.2 VIPs , 2 Serverfarms, One for http , and one for https .But I found that the https would referred to http information on IIS , because when the client first to access http is ok,and then login by https ,the information is not right.So,how to config CSM in this case,any reply will be very be appreciated.

    There are 2 different ways.
    You could combine the 2 vserver into a single one by not specifying the tcp port.
    Another solution would be to use the same sticky group for both vservers.
    For example, you could use sticky srcip.
    ie:
    sticky 10 netmask /32 address source
    vserver http
    sticky 60 group 10
    inservice
    vserver https
    sticky 60 group 10
    inservice
    Regards,
    Gilles.
    Thanks for rating this answer.

  • NFS client test program

    I'm trying to write a test program that behaves like an NFS client. The code uses the standard RPC calls to talk to the NFS server. It compiles and runs fine on Linux. On Solaris though I have a problem establishing an RPC client initially.
    The test program performs the following operations:
    1. Uses the portmapper service on the server to establish the remote port associated with the MOUNT service
    1. Creates a socket, sockfd.
    2. Uses bindresvport to bind a reserved port to the socket. The port number is in the reserved range (ie 600 to 1000ish).
    3. Connects this socket to the server
    3. Creates a struct sockadd_in with the appropriate address information for the server in addr
    4. Calls clnttcp_create
    The following code
    client = clnttcp_create(addr, <------- points at the server
    program, <-------- MOUNT RPC program number
    program_version, <--------- MOUNT RPC program version
    &sockfd, <------- connected socket using a reserved port on the local client
    0,
    0);
    if (client == NULL) {
    clnt_pcreateerror("clnttcp_create");
    returns "clnttcp_create: RPC: Remote system error - Address already in use".
    So it looks like port 688 (the local port selected say by bindresvport) is already in use ? But that's the whole point, I need to provide cnttcp_create() with a socket that already has a port bound to it.
    The same code runs fines on a Suse 11 client talking to Open Solaris 11 server. The same code run as a client on Solaris 11 fails with the above message when talking to either a Suse 11 server or a Solaris 11 server.
    Any suggestions what I'm doing wrong? Is this the right forum in which to ask?
    many thanks

    Make sure you have the sub-folder com, and then another sub-folder underneath it, mastertech and another sub-folder underneath this called sample. This is how packages are structured. They should be in your ep workspace directory structure if you're using Eclipse. In JBoss, you do not have to have the packages or any source code structure. Just jar your compiled code and save in JBoss's deploy folder which only accepts jar's, war's and ear's.

  • How to make 2 clients on same VLAN communicate to each other when tunnel-loop-prevention is enabled?

    Requirement:
    How to make two clients on same VLAN communicate to each other when tunnel-loop-prevention is enabled on tunneled-node configuration at controller?
    Whenever we enable tunnel-loop-prevention on controller while we configure tunneled-node, the communication between two tunneled-node client on same VLAN is blocked or dropped.
    If the tunneled-node clients are of different VLANs then they can communicate between them even when the tunnel-loop-prevention is enabled on the controller.
    Solution:
    To make two tunneled-node client on same VLAN to communicate between them, we need to enable "local-proxy-arp" for the interface VLAN on the controller.
    Once it is enabled now the tunneled-node clients on same VLAN can communicate between each other. 
    Configuration:
    To enable "local-proxy-arp":
    Get to the interface of the VLAN on the controller
    Example :
    (config)#interface vlan 5
    (config)#ip local-proxy-arp
    To enable tunnel loop prevention on controller
    (config)# tunnel-loop-prevention
    Verification
    Show commands:
    To check if tunnel-loop-prevention is enabled or disabled
    #show tunneled-node config
    Tunnelded node Server: Enabled
    Tunnel Loop Prevention: Enabled
    To check if local-proxy-ap is enabled:
    #show interface vlan 5
    Look for in the output "ProxyARP enable"

    streetfi8er wrote:
    Server ready,waiting for client:
    Exception in thread "New THREAD" java.lang.NullPointerException
         at server4$server4Thread.run(server4.java:88)
    Failed to accept client
    when i run the second client programme on different a console in the same system i get the error that:
    Unknown HostOK, I'm no socket programming expert; but I can see a few potential problems with what you've written.
    1. First off, which line is line 88? Line numbers would be useful. Also, indenting your code properly would make it easier to read.
    2. Your 'while(!str.equalsIgnoreCase("close"))' will always fail with a NullPointerException because 'str' is initially set to null.
    3. Your 'while(true)' loop worries me. How does it exit? Relying on an exception is usually very bad practise.
    4. You are not handling SecurityExceptions. While it's unlikely to happen on your machine; it could easily happen on another.
    5. It might be worth indicating the actual exception thrown in your "Failed to accept client" message. accept() can throw three different types of IOException.
    6. All the threads you create will be called "New THREAD", which doesn't provide much value.
    HIH
    Winston

Maybe you are looking for

  • Premiere Pro CC crashes in opening a project file

    I am using Premiere Pro CC since 1.5 years now. No big problems so far but now suddenly a strange one in opening a project file. Several other project files open up as usual, but the last one I've been working on, suddenly crashes in the middle of lo

  • NullPointerException in ejbActivate

    Hello guys, Iam having a session bean which calls entity beans. When I invoke the ejbFindByPrimaryKey method using the primary key value, I get returned an entity instance correctly..(iam checking it in the code)..But when i invoke a business method

  • P67A GD65 not getting to POST

    Hi all, Please help! Recently installed 2 SSD drives and was told a BIOS update was required. Ran the bios flash via live update 5 and now I cannot get to post. The MB starts up then shuts down this happens continuously until I switch off via the psu

  • Deluge !

    So after an update the other day, deluge now causes my cpu usage to creep to ~67%.  While it seems that a system should still be functional at 67% usage, it definitely is not.  it causes everything to become unresponsive, and the only thing that **do

  • ID CS3 XCode sample projects

    Are there any Xcode plug-in sample projects available ? I've been trying to set up an empty Universal Binary project to build on. The Indesign Xcode template gave me a start but it seems like I'm having problems with the header search paths. The Shuc