在 Linux 下使用 nmcli 命令配置 USB 转网口的网卡,可以参考以下步骤:
- 确认已经连接上 USB 转网口的设备,并查看设备名称:
$ dmesg | grep "Ethernet"
[ 1883.580067] ax88179_178a 2-2:1.0 eth1: register 'ax88179_178a' at usb-0000:00:14.0-2, ASIX AX88179 USB 3.0 Gigabit Ethernet, xx:xx:xx:xx:xx:xx
其中,eth1
是设备名称。
- 使用 nmcli 命令添加一个新的网络连接:
$ sudo nmcli connection add type ethernet ifname eth1 con-name usb-to-ethernet
其中,eth1
是设备名称,usb-to-ethernet
是该网络连接的名称。
- 使用 nmcli 命令配置 IP 地址、子网掩码、网关等参数:
$ sudo nmcli connection modify usb-to-ethernet ipv4.method manual ipv4.addresses 192.168.1.10/24 ipv4.gateway 192.168.1.1 ipv4.dns 192.168.1.1
以上命令中的参数含义如下:
ipv4.method manual
: 指定 IPv4 地址获取方式为手动配置。ipv4.addresses 192.168.1.10/24
: 指定 IP 地址及子网掩码。这里假设 IP 地址为 192.168.1.10,子网掩码为 255.255.255.0。ipv4.gateway 192.168.1.1
: 指定网关 IP 地址。ipv4.dns 192.168.1.1
: 指定 DNS 服务器 IP 地址。
- 启用该网络连接:
$ sudo nmcli connection up usb-to-ethernet
至此,使用 nmcli 命令配置 USB 转网口的网卡就完成了。
内容由零声教学AI助手提供,问题来源于学员提问