Links

   Quran Explorer - Interactive Audio Recitations & Translations

Wednesday, September 1, 2010

Solaris - Network Interfaces

1. Ip Address basics
checking the config of a particular (configured) interface
- ifconfig e1000g0
Modifying
- ifconfig e1000g0 inet 192.168.1.1 netmask 255.255.255.0 broadcast 192.168.1.255

2. Network Interfaces
a. check configured (plumbed ??) interfaces
# ifconfig -a
b. to check all connected physical nic ports
# dladm show-dev
c. to mount(?) an interface (eg e1000g1) (before u can give it an ip)
# efconfig e1000g1 plumb
d. to give it an ip
#ifconfig e1000g1 inet 192.168.56.103 netmask 255.255.255.0 broadcast 192.168.56.255
e. to bring it up (make it usable)
#ifconfig e1000g1 up

No comments:

Post a Comment

Feel free to leave a comment