:for aaa from 1 to 254 do={/ ppp secret add name=(a . $aaa) service=pppoe caller-id="" password="123456" profile=PPPOE_IN remote-address=(192.168.100. . $aaa) routes="" limit-bytes-in=0 limit-bytes-out=0}
简单说明::for aaa from 1 to 254 do={/ ppp secret add name=(a . $aaa)………………(192.168.100. . $aaa)
这段截出来的文字中 红色的 均为变量,请不要调整。 其中蓝色的 代表名字  例如a那么产生的 名字就将为a1  a2 a12 a112 等等
有的时候为了方便 我们往往 使用001  002 010 100 这样的名字方便排列,所以 我们可以更懒一点
针对 1--9
:for aaa from 1 to 9 do={/ ppp secret add name=(a00 . $aaa) service=pppoe caller-id="" password="123456" profile=PPPOE_IN remote-address=(192.168.100. . $aaa) routes="" limit-bytes-in=0 limit-bytes-out=0}
针对10--99
:for aaa from 10 to 99 do={/ ppp secret add name=(a0 . $aaa) service=pppoe caller-id="" password="123456" profile=PPPOE_IN remote-address=(192.168.100. . $aaa) routes="" limit-bytes-in=0 limit-bytes-out=0}
针对100--254
:for aaa from 100 to 254 do={/ ppp secret add name=(a . $aaa) service=pppoe caller-id="" password="123456" profile=PPPOE_IN remote-address=(192.168.100. . $aaa) routes="" limit-bytes-in=0 limit-bytes-out=0}