香橙派设置内网静态IP
当重启网络或香橙派重新连接网络后,IP可能会发生变化,每次都在路由器中查看很不方便。所以,需要为香橙派分配一个固定的IP。
安装网络管理工具:
apt install network-manager
查看网卡信息:
nmcli con show
可以看到类似如下的信息:
Wired connection 1 xxxxxx ethernet eth0
查看当前IP地址,注意留意掩码位:
ip addr
如下地址,24即是掩码位,表示子网掩码是255.255.255.0:
192.168.1.8/24
配置IP、网关和DNS:
nmcli con mod "Wired connection 1" \
ipv4.addresses "192.168.1.80/24" \
ipv4.gateway "192.168.1.1" \
ipv4.dns "1.1.1.1,8.8.8.8" \
ipv4.method "manual"
其中Wired connection 1为要配置的网络名称;ipv4的掩码位一定要正确,否则会造成远程连接不上香橙派;manual表示将分配地址的方式从DHCP更改为静态。
配置内容将写入以下文件:
/etc/NetworkManager/system-connections/Wired connection 1.nmconnection
如果手动修改了配置文件,需要重载配置:
nmcli con reload
如果因配置参数错误导致无法远程连接香橙派,可以将TF卡拔出,在其他电脑插入并编辑配置文件:
Wired connection 1.nmconnection
启用网络接口:
nmcli con up "Wired connection 1"