Linux網路相關

2021-08-11 13:16:16 字數 2644 閱讀 6603

功能

語法啟動網絡卡

ifup 網絡卡名

關閉網絡卡

ifdown 網絡卡名

重啟單個網絡卡

ifdown ens33 && ifup ens33

檢視網絡卡是否連線

mii-tool 網絡卡名

檢視主機名

hostname

更改主機名(重新登入即可永久生效)

hostnamectl set-hostname主機名

主機名的配置檔案

/etc/hostname

網絡卡配置檔案

/etc/sysconfig/network-scripts/

dns配置檔案(可在網絡卡配置檔案中更改)

/etc/resolv.conf

在本機更改ping的網域名稱

vi /etc/hosts 進入之後 ip+網域名稱(可乙個ip多個網域名稱)

1.進入網絡卡配置檔案,cp乙個網絡卡

[root@localhost ~]# cd /etc/sysconfig/network-scripts/

[root@localhost network-scripts]# ls

ifcfg-ens33 ifdown-ippp ifdown-sit ifup-bnep ifup-plip ifup-team network-functions-ipv6

ifcfg-lo ifdown-ipv6 ifdown-team ifup-eth ifup-plusb ifup-teamport

ifdown ifdown-isdn ifdown-teamport ifup-ib ifup-post ifup-tunnel

ifdown-bnep ifdown-post ifdown-tunnel ifup-ippp ifup-ppp ifup-wireless

ifdown-eth ifdown-ppp ifup ifup-ipv6 ifup-routes init.ipv6-global

ifdown-ib ifdown-routes ifup-aliases ifup-isdn ifup-sit network-functions

[root@localhost network-scripts]# cp ifcfg-ens33 ifcfg-ens33\:0 //這裡的\是指脫義

2.進入虛擬網絡卡,更改配置檔案

[root@localhost network-scripts]# vi ifcfg-ens33:0

說明:需要更改

name=ens33:0

device=ens33:0

ipaddr=192.168.152.150

dns1和gateway可以不要

3.重啟網絡卡

[root@localhost network-scripts]# ifdown ens33 && ifup ens33
4.檢視網絡卡

[root@localhost network-scripts]# ifconfig 

ens33: flags=4163 mtu 1500

inet 192.168.152.128 netmask 255.255.255.0 broadcast 192.168.152.255

inet6 fe80::50e7:255d:8ff7:2d3d prefixlen 64 scopeid 0x20

ether 00:0c:29:e5:64:9c txqueuelen 1000 (ethernet)

rx packets 4359 bytes 4527748 (4.3 mib)

rx errors 0 dropped 0 overruns 0 frame 0

tx packets 1491 bytes 139638 (136.3 kib)

tx errors 0 dropped 0 overruns 0 carrier 0 collisions 0

ens33:0: flags=4163 mtu 1500

inet 192.168.152.150 netmask 255.255.255.0 broadcast 192.168.152.255

ether 00:0c:29:e5:64:9c txqueuelen 1000 (ethernet)

lo: flags=73 mtu 65536

inet 127.0.0.1 netmask 255.0.0.0

inet6 ::1 prefixlen 128 scopeid 0x10

loop txqueuelen 1 (local loopback)

rx packets 80 bytes 6940 (6.7 kib)

rx errors 0 dropped 0 overruns 0 frame 0

tx packets 80 bytes 6940 (6.7 kib)

tx errors 0 dropped 0 overruns 0 carrier 0 collisions 0

Linux網路相關

網路檢測 dig 網域名稱 檢測網域名稱解析,如果網域名稱後端使用了lvs則解析出的ip為vip nslookup 網域名稱 檢測網域名稱解析是否正常 ping ip或網域名稱 檢測網路是否通暢,使用 c 選項可以指定ping的次數 telnet ip或網域名稱 port 檢測是否能連線遠端主機的特...

Linux 網路相關

1,netstat a 顯示全部連線 t 顯示tcp相關 u顯示udp相關 n 不加n的話,netstat會反解析ip為網域名稱顯示,加上的話就禁用反解析,加快速度 p 顯示程序 l 加上l的話,目的ip都是 原位址顯示ip port,stat巢狀字顯示listen。顯示監聽狀態的服務 ie ifc...

Linux相關網路命令

手動臨時設定ip sudo ifconfig eth0 up 192.168.1.10 手動設定ip一般在系統重啟後就失效 靜態設定ip ubuntu網路配置資訊儲存在 etc network inte ces 檔案中,預設內容如下 auto eth0 iface eth0 inet dhcp au...