AR750S ZeroTier Setup Guide?

  • Create an account in ZeroTier Central https://my.zerotier.com, then create a Network on it
  • Install ZeroTier on AR750S
  • Edit set enabled option to 1, and set join to your network ID in the configuration file /etc/config/zerotier
  • Start ZeroTier in AR750S via /etc/init.d/zerotier restart
  • Stop and remove MWAN3 package, which will change the route decision. The command you need to execute in AR70S ssh console: mwan3 stop && opkg remove mwan3 --force-depends
  • Configure the firewall, add those lines into /etc/config/firewall
config zone 'vpn_zone'
	option name 'zerotier'
	option input 'ACCEPT'
	option forward 'REJECT'
	option output 'ACCEPT'
	option device 'ztwdjh372k'
	option masq '1'
	option mtu_fix '1'

config forwarding
	option dest 'zerotier'
	option src 'lan'

config forwarding
	option dest 'lan'
	option src 'zerotier'

Please note that the device name should match with your own interface name(you can check it via ifconfig). The ZeroTier interface is begin with “zt”, so you also can use regular expression, such as option device ‘zt+’ .

Finally, restart the firewall to put info effect. /etc/init.d/firewall restart

1 Like