系統開機到現在總共收發字、資料報數量
網路介面引數---ifconfig
# 顯示全量網絡卡資訊
[root@localhost ~]# ifconfig
ens33: flags=4163mtu 1500
inet 192.168.159.129 netmask 255.255.255.0 broadcast 192.168.159.255
inet6 fe80::2227:1ed6:6865:8578 prefixlen 64 scopeid 0x20lo: flags=73mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10# 顯示指定網絡卡資訊
[root@localhost ~]# ifconfig ens33
ens33: flags=4163mtu 1500
inet 192.168.159.129 netmask 255.255.255.0 broadcast 192.168.159.255
inet6 fe80::2227:1ed6:6865:8578 prefixlen 64 scopeid 0x20# 關閉網絡卡
[root@localhost ~]# ifconfig ens33 down
# 關閉後檢視網絡卡資訊
[root@localhost ~]# ifconfig
lo: flags=73mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10loop txqueuelen 1000 (local loopback)
# 開啟網絡卡
[root@localhost ~]# ifconfig ens33 up
# 開啟後檢視網絡卡資訊
[root@localhost ~]# ifconfig
ens33: flags=4163mtu 1500
inet 192.168.159.129 netmask 255.255.255.0 broadcast 192.168.159.255
inet6 fe80::2227:1ed6:6865:8578 prefixlen 64 scopeid 0x20lo: flags=73mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10
主機名引數hostnamectl
# 顯示系統主機名稱
[root@localhost ~]# hostnamectl
static hostname: localhost.localdomain
icon name: computer-vm
chassis: vm
machine id: f17c01b36a694a24ac23d87c18bcd8be
boot id: cebdc9dbb5804db187c08c5dcbfcabf3
virtualization: vmware
operating system: centos linux 7 (core)
cpe os name: cpe:/o:centos:centos:7
kernel: linux 3.10.0-1160.el7.x86_64
architecture: x86-64
# 設定主機名稱
[root@localhost ~]# hostnamectl set-hostname moke
# 檢視主機名稱
[root@localhost ~]# hostnamectl
static hostname: moke
icon name: computer-vm
chassis: vm
machine id: f17c01b36a694a24ac23d87c18bcd8be
boot id: cebdc9dbb5804db187c08c5dcbfcabf3
virtualization: vmware
operating system: centos linux 7 (core)
cpe os name: cpe:/o:centos:centos:7
kernel: linux 3.10.0-1160.el7.x86_64
architecture: x86-64
路由引數---route
# 顯示當前路由表
[root@localhost ~]# route -n
kernel ip routing table
destination gateway genmask flags metric ref use iface
0.0.0.0 192.168.159.2 0.0.0.0 ug 100 0 0 ens33
192.168.122.0 0.0.0.0 255.255.255.0 u 0 0 0 virbr0
192.168.159.0 0.0.0.0 255.255.255.0 u 100 0 0 ens33
# 新增預設路由閘道器
[root@localhost ~]# route add default gw 192.168.159.2
# 新增指定網段閘道器
[root@localhost ~]# route add -net 172.16.0.0/16 gw 192.168.159.2 dev ens33
# 刪除預設閘道器
[root@localhost ~]# route del default gw 192.168.159.2
# 刪除指定網段閘道器
[root@localhost ~]# route del -net 172.16.0.0/16
# 網絡卡配置修改
[root@localhost ~]# vim /etc/sysconfig/network-scripts/ifcfg-ens33
# 重啟網路服務使新設定生效
[root@localhost ~]# systemctl restart network
# 主機名修改
[root@localhost ~]# vim /etc/hostname
# 路由資訊設定(預設檔案不存在,配置時建立)
[root@localhost network-scripts]# vim /etc/sysconfig/network-scripts/route-ens33
# 重啟網路服務使新設定生效
[root@localhost ~]# systemctl restart network
centos 網路配置
一 centos 修改ip位址 修改對應網絡卡的ip位址的配置檔案 vi etc sysconfig network scripts ifcfg eth0 device eth0 hwaddr 44 33 4c 00 18 98 type ethernet uuid 5d40d966 3bf9 4b...
CentOS配置網路
1 配置ip vim etc sysconfig network scripts ifcfg eth0 檔案不存在就建立乙個,名字為 ifcfg 具體網絡卡的命名 可以用ifconfig命令檢視,左邊顯示的就是 device eth0 物理裝置名 ipaddr 192.168.1.100 ip位址 ...
centos網路配置
修改ip位址 1 使用setup命令 使用setup命令進入圖形介面,根據提示進入network configuration,edit device,根據提示進行ip設定 2 直接編輯檔案進行修改 vi etc sysconfig network scripts ifcfg eth0 此處的ifcf...