InterviewSolution
Saved Bookmarks
| 1. |
How Do I Identify The Network Interfaces On My Server? |
|
Answer» Either of the following two commands will display the NETWORK interfaces: lsdev -CC if or ifconfig -a. To get INFORMATION about one SPECIFIC network interface, for eaxample tr0, run the command ifconfig tr0. Either of the following two commands will display the network interfaces: lsdev -Cc if or ifconfig -a. To get information about one specific network interface, for eaxample tr0, run the command ifconfig tr0. |
|