openWrt配置笔记
Posted whbill
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了openWrt配置笔记相关的知识,希望对你有一定的参考价值。
一.网卡IP配置
配置文件路径/etc/config/network
配置IP地址。设成静态地址比较好。网关和DNS直接设成自己路由器的网关地址
...
config interface lan
option device br-lan
option proto static
option ipaddr 192.168.1.200
option netmask 255.255.255.0
option gateway 192.168.1.1
option dns 192.168.1.1
option ip6assign 60
然后重启网卡
ifup lan
二. 安装软件包
- 安装fdisk
root@OpenWrt:# opkg update
root@OpenWrt:# opkg install fdisk
以上是关于openWrt配置笔记的主要内容,如果未能解决你的问题,请参考以下文章