Bash/Network: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Created page with "<syntaxhighlight lang="bash"> # show config all interface ifconfig # see ip add eth0 interface ip a show eth0 # to turn off eth0 interface ifdown eth0 # to turn on eth0 i..."
 
m Shahed moved page Network to Bash/Network: Maintain Hierarchy of Script
(No difference)

Revision as of 03:04, 10 April 2018

# show config all interface
ifconfig

# see ip add  eth0 interface
ip a show eth0

# to turn off eth0 interface
ifdown eth0

# to turn on  eth0 interface
ifup eth0

References