Linux相關網路命令

2021-06-06 04:06:02 字數 909 閱讀 2463

手動臨時設定ip

sudo ifconfig eth0 up 192.168.1.10

手動設定ip一般在系統重啟後就失效

靜態設定ip

ubuntu網路配置資訊儲存在 /etc/network/inte***ces 檔案中,預設內容如下:

auto eth0

iface eth0 inet dhcp

auto lo

iface lo inet loopback

設定靜態ip的方法如下:

使用root使用者編輯 /etc/network/inte***ces

i)注釋掉第二行,設定靜態ip有關引數

auto eth0

#iface eth0 inet dhcp

iface eth0 inet static

address *.*.*.*(合適的ip位址)

netmask 255.255.255.0

gateway *.*.*.*(合適的閘道器)

auto lo

iface lo inet loopback

ii)編輯 /etc/resolv.conf,設定dns

nameserver *.*.*.*(合適的dns)

iii)關閉後重啟,使新設定生效

$sudo ifconfig eth0 down

$sudo ifconfig eth0 up

另外,重啟網路的命令是 sudo /etc/init.d/networking restart  (對ubuntu而言)

以上方法都是屬於命令列的方式,當然還有更簡單的方法,就是直接在介面設定(和windows一樣簡單),前提能夠找到設定的地方,具體方法找google或者baidu。

Linux網路相關命令

2.物理介面上增加子介面 同乙個物理介面上的不同子介面是以vlan區分的,所以首先要增加vlan,命令 vconfig add ethx vlanid,此後便在ethx介面上建立了vlan為vlanid的子介面ethx.vlanid,然後ifconfig為ethx.vlanid介面配置ip。刪除子介...

Linux相關網路命令

telnet ip 埠號 檢視ip curl ifconfig.me cat etc rc.config.d netconf nslookup hostname hostname 可以從 etc host檔案得到 who輸出常用標題含義 標題 含義 user 使用者登陸 line 使用者登陸使用終端...

linux命令 網路相關

netstat anop 檢視ip port的tcp udp型別 活動狀態及所屬程序。3次握手過程狀態 listen 這個也是非常容易理解的乙個狀態,表示伺服器端的某個socket處於監聽狀態,可以接受連線了。syn sent 當客戶端socket執行connect連線時,它首先傳送syn報文,因此...