差别
这里会显示出您选择的修订版和当前版本之间的差别。
两侧同时换到之前的修订记录 前一修订版 后一修订版 | 前一修订版 | ||
public:it:openwrt [2022/08/15 15:12] – oakfire | public:it:openwrt [2022/09/27 17:56] (当前版本) – [VLAN] oakfire | ||
---|---|---|---|
行 1: | 行 1: | ||
====== OpenWrt ====== | ====== OpenWrt ====== | ||
* [[https:// | * [[https:// | ||
+ | * [[https:// | ||
+ | ===== device ===== | ||
+ | * https:// | ||
+ | ===== Tips ===== | ||
+ | * openwrt 内 '' | ||
+ | ===== feeds ===== | ||
+ | * https:// | ||
+ | * [[https:// | ||
+ | ===== ubus ===== | ||
+ | * https:// | ||
+ | ===== UCI ===== | ||
+ | * https:// | ||
+ | * ''/ | ||
===== LuCI ===== | ===== LuCI ===== | ||
* https:// | * https:// | ||
+ | * https:// | ||
* [[http:// | * [[http:// | ||
+ | * 大部分数据获取通过 [[https:// | ||
+ | |||
+ | ===== uHTTPd ===== | ||
+ | * https:// | ||
+ | * https:// | ||
+ | |||
+ | ===== VLAN ===== | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | * 使用 openwrt swconfig 驱动方式的 switch 设备可以用 '' | ||
+ | * 而使用 linux 最新 DSA switch 驱动方式的,则使用 openwrt v21.0 之后的luci 界面表现的 '' | ||
+ | * DSA switch 驱动会把每个lan口都表现为一个lan设备, ifconfig 会看到 lan1到lan4不等 | ||
+ | |||
+ | ===== VMWare 创建 OpenWrt 虚拟机 ===== | ||
+ | |||
+ | - 在官网下载 **x86/64** 的img, 比如 https:// | ||
+ | - 使用工具 **StarWind V2V Converter** 把 img 转为 vmdk | ||
+ | - 在 VMWare 创建虚拟机,系统选择【 Linux / 其他 Linux 5.x 及更高版本内核 64 位】 | ||
+ | - 网络选择 NAT (VMWare 需提前创建好 NAT模式虚拟网络) | ||
+ | - 选择已有的硬盘,加载之前转换好的 vmdk 文件 | ||
+ | - 开机,进去修改网络:< | ||
+ | uci set network.lan.proto=dhcp | ||
+ | uci commit network | ||
+ | / | ||
+ | - '' | ||
+ | - 扩展硬盘, | ||
+ | - 在 vmware 扩展硬盘; | ||
+ | - 进入openwrt, | ||
+ | - 配置新分区< | ||
+ | m # enter help | ||
+ | n # add new | ||
+ | 3 # 分区号选择默认3 | ||
+ | 默认默认 | ||
+ | w # 写入 | ||
+ | # fdisk 结束 | ||
+ | reboot # 重启 | ||
+ | mkfs.ext4 /dev/sda3 # 格式化 | ||
+ | reboot # 重启 | ||
+ | </ | ||
+ | - 复制根目录到新分区< | ||
+ | mkdir /mnt/sda3 | ||
+ | mount /dev/sda3 /mnt/sda3 | ||
+ | mkdir -p /tmp/cproot | ||
+ | mount --bind / /tmp/cproot | ||
+ | tar -C /tmp/cproot -cvf - . | tar -C /mnt/sda3 -xf - | ||
+ | umount /tmp/cproot | ||
+ | umount /mnt/sda3 | ||
+ | </ | ||
+ | - 配置 | ||
+ | blkid -s UUID /dev/sda3 | cut -d\" -f2 # 得到 /dev/sda3 的uuid | ||
+ | f53ad0a2-18ba-4d37-8d1a-44ad3d1b4ce4 | ||
+ | |||
+ | uci add fstab mount | ||
+ | uci set fstab.@mount[-1].uuid= < | ||
+ | uci set fstab.@mount[-1].options=rw, | ||
+ | uci set fstab.@mount[-1].fstype=ext4 | ||
+ | uci set fstab.@mount[-1].enabled_fsck=1 | ||
+ | uci set fstab.@mount[-1].enabled=1 | ||
+ | uci set fstab.@mount[-1].target=/ | ||
+ | uci set fstab.@mount[-1].device=/ | ||
+ | uci commit fstab | ||
+ | |||
+ | / | ||
+ | / | ||
+ | |||
+ | </ | ||
+ | - '' |