简介
使用esxi7.0安装openwrt19.07.3
openwrt做旁路由
并且配置出全局代理,保证网络的唯一稳定
安装
下载opwnwrt
我使用的是
https://downloads.openwrt.org/releases/19.07.3/targets/x86/64/openwrt-19.07.3-x86-64-combined-ext4.img.gz
转变成esxi可用的vmdk
windows
- StarWind V2V Converter
- Local file
- 选择镜像文件
- VMware ESX server image
- Next
- Next
qemu
gunzip openwrt-x86-generic-combined-ext4.img.gz
qemu-img convert -f raw -O vmdk openwrt-x86-generic-combined-ext4.img openwrt-x86-generic-combined-ext4.vmdk
esxi新建虚拟机
- kernel版本看
https://openwrt.org/packages/pkgdata/kernel
- 第一个网络选wan
- 第二个网络选lan
- 替换硬盘
- 引导选择bios
换源
cp /etc/opkg/distfeeds.conf /etc/opkg/distfeeds.conf.bak;
sed -i 's_downloads.openwrt.org_mirrors.bfsu.edu.cn/openwrt_' /etc/opkg/distfeeds.conf;
安装中文支持
opkg update;
opkg install luci-i18n-base-zh-cn;
替换中文
web里面操作
安装必要的库
libustream-openssl20150806
zsh
git
curl
后面的一切
总结
本来想的是openwrt接的lan1是172.16.0.0/16
openwrt接管172.16.1.0/24
然后下面接的主机可以直接通过172的段进行访问,后来发现怎么设置都不行。所以退而求其次,用了wan-lan都方式,不过这样的话的确很轻松的搞定了。