ifconfig
主要用于配置和显示网络接口的参数,配置网络接口如(IP地址、子网掩码等),启动或禁用网接口。
ifconfig [网络接口] [选项]
常用选项如下
-a 查看所有活动和非活动的网络接口
up 激活网络接口
down 关闭网络接口
找不到'ifconfig'命令, sudo apt install net-tools
显示未关闭的所有网络接口信息(网卡)
ifconfig
eth0 网卡,lo 回环接口
inet ip地址 netmask 子网掩码 ether 以太网硬件地址/MAC地址
inet6 ipv地址
查看所有活动和非活动的网络接口
ifconfig -a
ifconfig 网络接口 up/down
ifconfig eth0 down
关闭eth0 网卡,网络接口会被关闭
ifconfig eth0 up
开启ethh0 网卡,网络接口会被开启
为一个网卡配置多个IP地址,共享同一个物理网络接口,但是拥有不同的IP地址。
ifconfig eth0:1 192.168.1.101 netmask 255.255.255.0 up
ifconfig eth0:2 192.168.1.102/24 up
以上两种配置方式一样,为eth0配置别名IP
使用ifconfig 查看
重启所有对网络接口的设置都会失效,永久修改需要对下 /etc/network/interfaces.d 文件修改
示例
auto eth0
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
gateway 192.168.1.1
auto eth0:0
iface eth0:0 inet static
address 192.168.1.101
netmask 255.255.255.0
auto eth0:1
iface eth0:1 inet static
address 192.168.1.102
netmask 255.255.255.0
标签:配置,192.168,ifconfig,网卡,netmask,网络接口,eth0
From: https://blog.csdn.net/weixin_49518165/article/details/145098576