VirtualBox에서 OpenWrt를 실험하고 있습니다. 그래서 여기 내가 가진 것이 있습니다 :
- openwrt VM
- 어댑터 1이 브릿지되었습니다. 실제 라우터에서 192.168.1.x 주소를 가져옵니다.
- 어댑터 2는 로컬 네트워크 "openwrt-lan"입니다. 정적 브리지로 구성되었습니다.
- 데비안 VM
- 어댑터 1은 로컬 네트워크 "openwrt-lan"입니다. DHCP로 구성되었습니다.
내 / 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 interface 'wan'
option proto 'dhcp'
option ifname 'eth1'
config interface 'lan'
option ifname 'eth0'
option proto 'static'
option ipaddr '192.168.2.1'
option netmask '255.255.255.0'
이제 데비안 VM은 192.168.2.136 주소를 얻었으며 openwrt까지 볼 수 있습니다. 라우팅 테이블은 다음과 같습니다.
Destination Gateway Genmask Flags Metric Ref Use Iface
default OpenWrt.lan 0.0.0.0 UG 0 0 0 eth0
link-local * 255.255.0.0 U 1000 0 0 eth0
192.168.2.0 * 255.255.255.0 U 1 0 0 eth0
/etc/resolv.conf :
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 127.0.0.1
search lan
그러나 openwrt를 넘어서는 볼 수 없습니다. tracert 8.8.8.8은 트래픽이 openwrt 라우터에서 중지 함을 보여줍니다.
이상한 점은 openwrt VM에서 위의 구성에도 불구하고 eth0에 IP가 없다는 것입니다. 관련이 있는지 확실하지 않습니다.
모든 의견을 부탁드립니다.