Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. quicksilverm25

    Testing if a string contains a numeric value?

    There is an ASCII value associated with each character. So you can check if the ascii value Let's say the string is stored in variable STRING. func isContainingOnlyDigits(char *string) { for (i=0;i<strlen(STRING);i++) { if( STRING[i]>15 && STRING[i]<26) { } else return...
  2. quicksilverm25

    Longer time for su &lt;user&gt; login when interface down

    Hi, 1. I have qfe3 which is up and running. 2. I have hostname.qfe3 and hosts properly configured. The qfe3 is alos my loghost. 3. I now need to make this server standby, so I disable the qfe3 by moving the hostname.qfe3 to hostname.qfe3.disabled. 4. I reboot the machine and login using...
  3. quicksilverm25

    netmask of interface not being read from /etc/netmasks

    Hi, 1. I have qfe3 which is up and running. 2. I have hostname.qfe3 and hosts properly configured. The qfe3 is alos my loghost. 3. I now need to make this server standby, so I disable the qfe3 by moving the hostname.qfe3 to hostname.qfe3.disabled. 4. I reboot the machine and login using...
  4. quicksilverm25

    netmask of interface not being read from /etc/netmasks

    Hi, I am trying to setup a private network. One of the steps which I did was to write netmasks of qfe0 as 255.255.255.252 in /etc/netmasks file. After rebooting the machine it remains the same in the file, but the ifconfig qfe0 shows 255.255.255.0 and I am not sure why it is doing so ?? Why is...

Part and Inventory Search

Back
Top