- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Operating System - Tru64 Unix
- >
- Re: How to check lan card setting on Tru64?
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
11-07-2004 05:18 PM
11-07-2004 05:18 PM
Thanks
Eric
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2004 06:17 PM
11-07-2004 06:17 PM
Re: How to check lan card setting on Tru64?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2004 07:12 PM
11-07-2004 07:12 PM
Re: How to check lan card setting on Tru64?
what nic do you have and what os version?
tulip cards you can set with the console variables and intel cards should be on automatic. Tru64 5.x allows you to use sysman for settings.
greetings,
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2004 08:03 PM
11-07-2004 08:03 PM
Re: How to check lan card setting on Tru64?
OSF1 erpap V5.1 1885 alpha
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2004 01:42 AM
11-08-2004 01:42 AM
SolutionNetwork Card SRM Console Name Tru64 UNIX driver/name
--------------------------------------------------------------
DE500 ewa0, ewb0, ... tu0, tu1, ...
DE600 eia0, eib0, ... ee0, ee1, ...
DEGPA-SA none (not visible) alt0, alt1, ...
DEGPA-SA cards are brain dead at the console and by default autonegotiate on UNIX boot.
DE600 cards have a console variable that you can set but regardless of the
value of it by default they autonegotiate on UNIX boot too.
The lan_config command allows you to modify the type of medium, speed, and
mode of operation (half- or full-duplex).
You can also use the lan_config command to enable or disable autonegotiation,
if the underlying device has this capability.
Modifications made with the lan_config command do not persist across
reboots of the operating system. To configure the interface or modify the
parameters automatically each time the system is booted, edit the
/etc/inet.local file and add the lan_config command entries to it.
Here is something from the man page for lan_config:
For DE5xx devices (tu), the characteristics managed with the lan_config
command are ordinarily set from the console level via the EWx0_MODE
environment variable. The lan_config command allows you to override this
default and configure the interface as needed after the system is up and
running. For all other devices, you must use the lan_config command to
RESTRICTIONS
You can configure only tu interfaces (DE5xx) by setting the appropriate
console environment variables.
You can also use the ifconfig command to set the speed and mode (half- or
full-duplex) either from the command line or in the inet.local file. If
you specify the command in the inet.local file, the command is executed
each time the system is booted.
============================
The /etc/inet.local file is a file that is called by /sbin/init.d/inet after all
the network interfaces are up and running, but before any other network
services are started.
============================
To verify what an interface is currently set to use hwmgr:
# hwmgr -get attr -cat network | grep -E 'name|speed|duplex|auto|link'
============================
The following commands peek into kernel memory.
- Speed
##
# (ifnet.if_next if the lan target is tu1, ifnet.if_next.if_netxt for tu2, ...)
dbx -k /vmunix
dbx > p ifnet
if_baudrate = speed
- Type
##
# X is the number of the target (tu1,tu2, etc...)
dbx -k /vmunix
dbx> p tu_softc[X].tu_flags
fast_speed = 1 ---> 1-> 100
0-> 10
full_duplex = 1 ---> 1-> Full duplex
0-> Half duplexmy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2005 03:27 PM
11-08-2005 03:27 PM
Re: How to check lan card setting on Tru64?
the above command is not able to perform on version 4.....