- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- error in rc.log
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
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
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
08-27-2001 02:00 PM
08-27-2001 02:00 PM
error in rc.log
What else can I check? Here is the error I get In the rc.log file.
Richard
Configure LAN interfaces
Output from "/sbin/rc2.d/S340net start":
----------------------------
ERROR: Failed to add route entry because its interface is not
yet initialized. May need to add this route entry with
a route commad after the interface is up :
add net default: gateway 192.168.10.251: Network is unreachable
"/sbin/rc2.d/S340net start" FAILED
Start name server daemon
Output from "/sbin/rc2.d/S370named start":
----------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2001 02:34 PM
08-27-2001 02:34 PM
Re: error in rc.log
You get this error when the lan card has not been initialized but you are trying to add a default route.
Make sure the lan interface you are trying to activate is defined correctly in /etc/rc.config.d/netconf
lanscan shows the hardware state (doesn't show the software state). You can get that either by lanadmin; choose the right PPA and choose display or run /usr/sam/lbin/laninfo
the status of the card will be right after the laninterface.
-HTH
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2001 03:50 PM
08-27-2001 03:50 PM
Re: error in rc.log
INTERFACE_NAME[1]=lan1
IP_ADDRESS[1]=xx.xx.xx.xx
..
..
ROUTE_DESTINATION[2]=xx.xx.xx.1
I guess you have the similar kind of problem that the index specified to your ROUTE_DESTINATION of the gateway is not matching to that of the LAN interface. When the system tries to add the router as specified above, it checks for the lan interface with the index 2 and fails because the interface is not enabled to be initialized.
So, you need to match the index for both the lan interface and the route.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2001 07:35 AM
08-28-2001 07:35 AM
Re: error in rc.log
make sure that the subnet mask is not the same for any of your lanics (look at SUBNET_MASK)
make sure that there are no duplicate entries for anything.
run route add default
Hope this solves your problems.
Regards,
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2001 07:40 AM
08-28-2001 07:40 AM
Re: error in rc.log
route add default
Good luck