HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Disconnecting from Network
Operating System - HP-UX
1833043
Members
2527
Online
110049
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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
05-02-2001 12:46 AM
05-02-2001 12:46 AM
Disconnecting from Network
Hi,
I am new to hp unix. Having Hp 9000 running hp os 10.20. Sometimes it suddenly gets disconnected from network. What are the network services i have to look. How to check whether it is up. And also pls tell me how to start the network service.
Thanks
Regards
Siva
I am new to hp unix. Having Hp 9000 running hp os 10.20. Sometimes it suddenly gets disconnected from network. What are the network services i have to look. How to check whether it is up. And also pls tell me how to start the network service.
Thanks
Regards
Siva
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2001 12:58 AM
05-02-2001 12:58 AM
Re: Disconnecting from Network
/sbin/init.d/net [stop|start]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2001 02:29 AM
05-02-2001 02:29 AM
Re: Disconnecting from Network
I would turn on verbose logging with #inetd -l, and look at the /var/adm/syslog/syslog.log for any messages where perhaps inetd died. Also, format your nettl.LOG00 and check for duplicate addresses.
#netfmt -f /var/adm/nettl.LOG00 > /tmp/log.out
#more /tmp/log.out
If you see a message like "trying to be our address," look the hex address that is doing the trying. You can then find out the manufacturer of that card by checking at
http://www.cavebear.com/CaveBear/Ethernet/index.html
or
http://www.normos.org/en/lists/ieee/all-ethernet.html
When your connection is lost, look to see if inetd is still running (#ps -ef | grep inetd). If not try to start it with
#/sbin/init.d/inetd start.
Regards,
Berlene
#netfmt -f /var/adm/nettl.LOG00 > /tmp/log.out
#more /tmp/log.out
If you see a message like "trying to be our address," look the hex address that is doing the trying. You can then find out the manufacturer of that card by checking at
http://www.cavebear.com/CaveBear/Ethernet/index.html
or
http://www.normos.org/en/lists/ieee/all-ethernet.html
When your connection is lost, look to see if inetd is still running (#ps -ef | grep inetd). If not try to start it with
#/sbin/init.d/inetd start.
Regards,
Berlene
http://www.mindspring.com/~bkherren/dobes/index.htm
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2001 03:01 AM
05-02-2001 03:01 AM
Re: Disconnecting from Network
Yet another tool is netfmt
# netfmt -t 10 /var/adm/nettl.LOG00
the t flag here means last 10 messages.
If you use ifconfig on your lan interfaces it will show wether they are up etc. Do this from the terminal (then you do not use the network!)
eg
# lanscan
Hardware Station Crd Hdw Net-Interface NM MAC HP-DLPI DLPI
Path Address In# State NamePPA ID Type Support Mjr#
8/0/2/0 0x0060B0B3ADC2 0 UP lan0 snap0 1 ETHER Yes 119
8/0/20/0 0x0010830379EA 1 UP lan1 snap1 2 ETHER Yes 119
here I have two lan cards on lan0 & lan1 to see how, say, lan0 is configured use ifconfig
# ifconfig lan0
lan0: flags=843
inet 158.234.78.137 netmask fffffc00 broadcast 158.234.79.255
Look for the UP flag as well as the rest.
I'm assuming the problems are intermittent
If connectivity just goes away & may recover you may have another device "spoofing" your IP address. In this case netfmt will say something appropriate.
If you have intermittent hardware type of problems then ifconfig may NOT show the UP flag. In this case you will need to restart the network for that lan card. you can use the previously suggested command
# /sbin/init.d/net
OR
Take the interface down
# ifconfig lan0 down
(Re)configure the interface
# ifconfig lan0 168.234.78.137 [netmask 255.255.252.0] up
If you are using standard netmasks then you can ignore the netmask bit.
As every one else has suggested you need more information etc
good luck
Tim
# netfmt -t 10 /var/adm/nettl.LOG00
the t flag here means last 10 messages.
If you use ifconfig on your lan interfaces it will show wether they are up etc. Do this from the terminal (then you do not use the network!)
eg
# lanscan
Hardware Station Crd Hdw Net-Interface NM MAC HP-DLPI DLPI
Path Address In# State NamePPA ID Type Support Mjr#
8/0/2/0 0x0060B0B3ADC2 0 UP lan0 snap0 1 ETHER Yes 119
8/0/20/0 0x0010830379EA 1 UP lan1 snap1 2 ETHER Yes 119
here I have two lan cards on lan0 & lan1 to see how, say, lan0 is configured use ifconfig
# ifconfig lan0
lan0: flags=843
inet 158.234.78.137 netmask fffffc00 broadcast 158.234.79.255
Look for the UP flag as well as the rest.
I'm assuming the problems are intermittent
If connectivity just goes away & may recover you may have another device "spoofing" your IP address. In this case netfmt will say something appropriate.
If you have intermittent hardware type of problems then ifconfig may NOT show the UP flag. In this case you will need to restart the network for that lan card. you can use the previously suggested command
# /sbin/init.d/net
OR
Take the interface down
# ifconfig lan0 down
(Re)configure the interface
# ifconfig lan0 168.234.78.137 [netmask 255.255.252.0] up
If you are using standard netmasks then you can ignore the netmask bit.
As every one else has suggested you need more information etc
good luck
Tim
-
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP