|
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
×
:log info [/ip route set [/ip route find comment="4"] gateway=1.1.1.1,2.2.2.2]
可以添加双网关
定义变量a为1.1.1.1 b为2.2.2.2
:log info [/ip route set [/ip route find comment="4"] gateway=$a]
可以添加单网关1.1.1.1
:log info [/ip route set [/ip route find comment="4"] gateway=$a]
可以添加单网关2.2.2.2
但
:log info [/ip route set [/ip route find comment="4"] gateway=$a,$b]
就添不了甚至不能运行
加个()
:log info [/ip route set [/ip route find comment="4"] gateway=($a,$b)]
能运行但添不了.
请问要如何才能解决? |
|