【openwrt】openwrt NAT64 NAT46实现简介
NAT64 & NAT46
在 OpenWrt 上实现 NAT46 和 NAT64 可以通过安装和配置相应的软件包来完成。
NAT64 实现步骤
安装必要的软件包
你需要安装 tayga
和 bind
或 dnsmasq
以支持 NAT64 和 DNS64。
使用以下命令安装:
opkg update
opkg install tayga
opkg install bind-server bind-tools
配置 Tayga
编辑 /etc/config/network
文件,添加 NAT64 接口配置:
config interface 'nat64'
option proto 'tayga'
option ifname 'tayga-nat64'
option ipv4_addr '192.168.0.1'
option prefix '64:ff9b::/96'
配置防火墙
确保防火墙允许 NAT64 的流量通过,编辑 /etc/config/firewall
: