很多使用openwrt的新手都会遇到openwrt如何修改IP地址
查看更多关于 openwrt如何修改IP地址 的文章
的问题,今天我们就为大家来带了简单易懂的openwrt修改IP地址
查看更多关于 openwrt修改IP地址 的文章
教程,帮助大家还解答openwrt如何修改IP地址
查看更多关于 openwrt如何修改IP地址 的文章
的问题。
运行Openwrt后的界面如下:
进入该界面后首先点击回车键,然后输入如下代码
vi etc/config/network
接下来进入IP设置界面:
点击“Insert”按钮,然后将config interface 'lan' 下面的 option ipaddr '192.168.X.X' 这边的IP地址改成你自己需要的局域网地址,修改完成后点击“ESC”退出按钮,然后按Shift+:
键,然后输入:wq
,保存退出后输入reboot
重启,(再输入命令重启网络 /etc/init.d/network restart )(若用户不想保存被修改后的文件而要强行退出Vi时,可使用命令 :q! )重启后我们就能通过刚刚设置的局域网IP进入Openwrt路由器的设置界面了。
====================================================================
less /etc/config/network #分页显示网络配置文件
more /etc/config/network #分页显示网络配置文件
ifconfig | less #分页显示ifconfig命令输出
ifconfig | more #分页显示ifconfig命令输出
=======================================================================
2021-06-16 15:32:42 16973次浏览
摘要:OpenWrt的网络配置文件是/etc/config/network,它负责交换芯片VLAN、网络接口和路由的配置。...
OpenWrt的网络配置文件是/etc/config/network
,它负责交换芯片VLAN、网络接口和路由的配置。
我们可以在控制台中输入ifconfig
命令来查看系统的IP地址
root@OpenWrt:/# ifconfig
Bash
Copy
修改IP地址,将192.168.1.1修改为192.168.10.1。
通过修改/etc/config
目录下的network
配置文件,可以达到目的。
首先在SSH控制台中输入vi /etc/config/network
命令来修改IP地址
root@OpenWrt:~# vi /etc/config/networkconfig interface 'loopback' option ifname 'lo' option proto 'static' option ipaddr '127.0.0.1' option netmask '255.0.0.0'config globals 'globals' option packet_steering '1'config interface 'lan' option type 'bridge' option proto 'static' option ipaddr '192.168.1.1' option netmask '255.255.255.0' option ip6assign '60' option _orig_ifname 'eth0' option _orig_bridge 'true' option ifname 'eth0 eth1 eth2'config interface 'wan' option proto 'dhcp' option ifname 'eth3'
Bash
Copy
按i
键进行修改,你可以对你的IP地址,子网掩码,默认网关等等进行修改。
修改完成之后按Esc
退出键,然后按Shift+:
键,输入wq
后回车保存并退出
然后执行重启网卡命令service network restart
官方网络设置:[OpenWrt Wiki] 网络设置
登录OpenWrt系统的WEB控制台
点击网络 --> 接口 --> LAN
点击修改
,进入LAN接口修改页面
将IPv4 地址
中的192.168.1.1
修改为自己想要的IP即可,修改完成后,最后点击下方的保存&应用
即可
---------------------------------- THE END ----------------------------------
默认的IP地址:192.168.1.1
用户名:root
密码:password
假如我们要把Openwrt的IP改成192.168.1.2,先登录SSH,然后在命令行输入:
vi /etc/config/network
然后修改文件:
config interface 'loopback'
option ifname 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config globals 'globals'
option ula_prefix 'fdf1:53e1:6bd9::/48'
config interface 'lan'
option type 'bridge'
option proto 'static'
option ipaddr '192.168.1.2'
option netmask '255.255.255.0'
option ip6assign '60'
option ifname 'eth0'
option gateway '192.168.1.1'
option dns '192.168.1.1'
修改完成按一次ESC,输入shift+: 输入:wq回车保存退出
再输入命令重启网络
/etc/init.d/network restart