- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: After repair -- NIC interface not found
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-03-2002 12:27 PM
тАО06-03-2002 12:27 PM
After repair -- NIC interface not found
When system ws repaired (with HP rep's help), network seemed OK (ping worked). Now I find I cannot telnet to machine.
rc.log gives error message starting with S112kminit:
interface_state[01]:not found
This error repeats many times in rc.log
Network config files have not changed. Not sure ehat this means or where to go with this.
(BTW: system's built in NIC is not used - an added 100MB E'net card is used instead)
Many thanks for your help...
David
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-03-2002 12:31 PM
тАО06-03-2002 12:31 PM
Re: After repair -- NIC interface not found
Do #ioscan -fnC lan
and check whether the device files of your lan card exists and it is configured in kernel.
Run commands lanscan and landiag. If the hardware status is down in the lanscan command then run
#ifconfig lan0
Or go to landiag and Reset the lancard.
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-03-2002 12:44 PM
тАО06-03-2002 12:44 PM
Re: After repair -- NIC interface not found
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-03-2002 12:47 PM
тАО06-03-2002 12:47 PM
Re: After repair -- NIC interface not found
Check your /dev/rc.config.d/netconf file.
Look for INTERFACE_STATE. a shrt of mine is :
# cat /etc/rc.config.d/netconf|grep -v "^#"|grep -v "^$"
HOSTNAME="vpart2"
OPERATING_SYSTEM=HP-UX
LOOPBACK_ADDRESS=127.0.0.1
INTERFACE_NAME[0]="lan0"
IP_ADDRESS[0]="141.123.226.41"
SUBNET_MASK[0]="255.255.240.0"
BROADCAST_ADDRESS[0]=""
INTERFACE_STATE[0]=""
DHCP_ENABLE[0]=0
ROUTE_DESTINATION[0]="default"
ROUTE_MASK[0]=""
ROUTE_GATEWAY[0]="141.123.224.1"
ROUTE_COUNT[0]="1"
ROUTE_ARGS[0]=""
GATED=0
GATED_ARGS=""
RDPD=0
RARP=0
INTERFACE_NAME[1]="lan5"
IP_ADDRESS[1]="141.123.226.42"
SUBNET_MASK[1]="255.255.240.0"
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-03-2002 01:05 PM
тАО06-03-2002 01:05 PM
Re: After repair -- NIC interface not found
In all probabilities the /etc/rc.config.d/netconf is corrupted or pointing a wron interface.
1. lanscan will give the lan interface the machine has sensed . check for the 100 mbps interface instance . Incase the card is not sensed then you need to get the interafce up .
2.Incase you can see the 2nd instance then you need to edit the /etc/rc.config.d.netconf file to look somehting like the file attached.
3. Stop the start the network daemon
/sbin/init.d/net stop and start .
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-03-2002 09:19 PM
тАО06-03-2002 09:19 PM
Re: After repair -- NIC interface not found
First, change this interface_state[01] to
interface_state[1] or interface_state[0]
Or else try the rest if the above doesn't solve
your problem.
the builtin lan uaually is lan0.
do a lanscan and look for the hardware path
of the new nic.
replace lan0 with lan?(new nic)
/sbin/init.d/net start
Does it work now?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-04-2002 12:51 AM
тАО06-04-2002 12:51 AM
Re: After repair -- NIC interface not found
having a look at the issue apparently it does point to an issue with the parameter described , one would expect indeed this format [01] to be somewhat strange , the value between those brackets is used in a 'while do' sequence so shouldn't be much of a problem unless the script does check on it's correctness which is what I fear ,so cahnge it to [1] ... there is however a small but very usefull way of finding out what is wrong at the startup in the scripts , that way is called
set -x
this command put in front of the relevant startup script (being S112 and the S008 net and lancard S300-400 script ranges pecific script) will show the execution of them during startup you can then see at what exact command it fails and what specific parameter is read at that moment , a good way of knowing if it is script related is to try after a failure to do manual configuration dong
ifconfig
if this works fine it most surely is a script error..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-04-2002 08:46 AM
тАО06-04-2002 08:46 AM
Re: After repair -- NIC interface not found
Turns out my netconf file was screwy (had interface 0 and 01 defined -- both pointing to same card!), and my etc/servies file got wiped out.
Thanks for the help!