Now with free steak knives! [1] ip prefix-list ihug-networks seq 5 permit 202.36.94.0/23 le 24 ip prefix-list ihug-networks seq 10 permit 202.37.129.0/24 ip prefix-list ihug-networks seq 15 permit 202.37.136.0/24 ip prefix-list ihug-networks seq 20 permit 202.37.182.0/24 ip prefix-list ihug-networks seq 25 permit 202.37.194.0/24 ip prefix-list ihug-networks seq 30 permit 202.49.59.0/24 ip prefix-list ihug-networks seq 35 permit 202.49.88.0/23 le 24 ip prefix-list ihug-networks seq 40 permit 202.49.148.0/23 le 24 ip prefix-list ihug-networks seq 45 permit 202.49.176.0/23 le 24 ip prefix-list ihug-networks seq 50 permit 202.49.180.0/23 le 24 ip prefix-list ihug-networks seq 55 permit 202.49.186.0/24 ip prefix-list ihug-networks seq 60 permit 202.49.240.0/22 le 24 ip prefix-list ihug-networks seq 65 permit 202.49.249.0/24 ip prefix-list ihug-networks seq 70 permit 202.49.252.0/22 le 24 ip prefix-list ihug-networks seq 75 permit 202.50.84.0/24 ip prefix-list ihug-networks seq 80 permit 202.50.103.0/24 ip prefix-list ihug-networks seq 85 permit 202.50.255.0/24 ip prefix-list ihug-networks seq 90 permit 203.109.128.0/17 le 24 ip prefix-list ihug-networks seq 95 permit 203.173.128.0/17 le 24 ip prefix-list ihug-networks seq 100 permit 210.55.184.0/24 ip prefix-list ihug-networks seq 105 permit 210.55.203.0/24 ip prefix-list ihug-networks seq 110 permit 210.55.248.0/21 le 24 As you can see, these allow for variable masks. If anyone requires specific prefixes, let me know and I'll see what I can do. We change them from time to time, and its easier this way. [1] Ok, I was kidding about the steak knives. --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
Damnit man. I was getting all ready to thrust one into my throat, too. On Tue, 29 May 2001, David Robb wrote:
Now with free steak knives! [1]
ip prefix-list ihug-networks seq 5 permit 202.36.94.0/23 le 24 ip prefix-list ihug-networks seq 10 permit 202.37.129.0/24 ip prefix-list ihug-networks seq 15 permit 202.37.136.0/24 ip prefix-list ihug-networks seq 20 permit 202.37.182.0/24 ip prefix-list ihug-networks seq 25 permit 202.37.194.0/24 ip prefix-list ihug-networks seq 30 permit 202.49.59.0/24 ip prefix-list ihug-networks seq 35 permit 202.49.88.0/23 le 24 ip prefix-list ihug-networks seq 40 permit 202.49.148.0/23 le 24 ip prefix-list ihug-networks seq 45 permit 202.49.176.0/23 le 24 ip prefix-list ihug-networks seq 50 permit 202.49.180.0/23 le 24 ip prefix-list ihug-networks seq 55 permit 202.49.186.0/24 ip prefix-list ihug-networks seq 60 permit 202.49.240.0/22 le 24 ip prefix-list ihug-networks seq 65 permit 202.49.249.0/24 ip prefix-list ihug-networks seq 70 permit 202.49.252.0/22 le 24 ip prefix-list ihug-networks seq 75 permit 202.50.84.0/24 ip prefix-list ihug-networks seq 80 permit 202.50.103.0/24 ip prefix-list ihug-networks seq 85 permit 202.50.255.0/24 ip prefix-list ihug-networks seq 90 permit 203.109.128.0/17 le 24 ip prefix-list ihug-networks seq 95 permit 203.173.128.0/17 le 24 ip prefix-list ihug-networks seq 100 permit 210.55.184.0/24 ip prefix-list ihug-networks seq 105 permit 210.55.203.0/24 ip prefix-list ihug-networks seq 110 permit 210.55.248.0/21 le 24
As you can see, these allow for variable masks. If anyone requires specific prefixes, let me know and I'll see what I can do. We change them from time to time, and its easier this way.
[1] Ok, I was kidding about the steak knives.
--------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
Tim J. Shackleton ------------------+ +- Business http://www.netlink.co.nz/ Networks Admin/Programmer ----------+ +- Personal http://www.netnet.net.nz/ Netlink LTD -- DDI +64 4 922 8476 --+ +------------- Pager 64 +26 253 4356 +64 29 650 476 -- Cellular ---------+ +------------------------------------ --------------------- " Lobster Sticks To Magnet " ------------------------ --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
Seeings as more people are getting them, I thought it might be helpful to write this. #!/usr/bin/perl $cli = 0; $header = 0; while (<>) { chomp; ($crap,$crap,$name,$crap,$crap,$crap,$prefix,$le,$limit) = split (/\ /,$_); if (!$header) { if ($cli){ print "edit policy-options policy-statement $name\n"; }else{ print "policy-statement ihug-networks {\n\tterm accept {\n\t\tfrom {\n"; } $header = 1; } if ($cli) { print "set term accept from "; }else{ print "\t\t\t"; } print "route-filter $prefix "; if ($le eq "le") {print "upto /$limit";}else{print "exact";} if ($cli) { print "\n"; }else{ print ";\n"; } } if ($cli) { print"set term accept then accept\nset term reject then reject\n"; } else { print "\t\t}\n\t\tthen accept;\n\t}\n\tterm reject {\n\t\t\tthen reject;\n\t}\n}\n"; } output looks like this edit policy-options policy-statement ihug-networks set term accept from route-filter 202.36.94.0/23 upto /24 set term accept from route-filter 202.37.129.0/24 exact set term accept from route-filter 202.37.136.0/24 exact set term accept from route-filter 202.37.182.0/24 exact set term accept from route-filter 202.37.194.0/24 exact set term accept from route-filter 202.49.59.0/24 exact set term accept from route-filter 202.49.88.0/23 upto /24 set term accept from route-filter 202.49.148.0/23 upto /24 set term accept from route-filter 202.49.176.0/23 upto /24 set term accept from route-filter 202.49.180.0/23 upto /24 set term accept from route-filter 202.49.186.0/24 exact set term accept from route-filter 202.49.240.0/22 upto /24 set term accept from route-filter 202.49.249.0/24 exact set term accept from route-filter 202.49.252.0/22 upto /24 set term accept from route-filter 202.50.84.0/24 exact set term accept from route-filter 202.50.103.0/24 exact set term accept from route-filter 202.50.255.0/24 exact set term accept from route-filter 203.109.128.0/17 upto /24 set term accept from route-filter 203.173.128.0/17 upto /24 set term accept from route-filter 210.55.184.0/24 exact set term accept from route-filter 210.55.203.0/24 exact set term accept from route-filter 210.55.248.0/21 upto /24 set term accept then accept set term reject then reject or this policy-statement ihug-networks { term accept { from { route-filter 202.36.94.0/23 upto /24; route-filter 202.37.129.0/24 exact; route-filter 202.37.136.0/24 exact; route-filter 202.37.182.0/24 exact; route-filter 202.37.194.0/24 exact; route-filter 202.49.59.0/24 exact; route-filter 202.49.88.0/23 upto /24; route-filter 202.49.148.0/23 upto /24; route-filter 202.49.176.0/23 upto /24; route-filter 202.49.180.0/23 upto /24; route-filter 202.49.186.0/24 exact; route-filter 202.49.240.0/22 upto /24; route-filter 202.49.249.0/24 exact; route-filter 202.49.252.0/22 upto /24; route-filter 202.50.84.0/24 exact; route-filter 202.50.103.0/24 exact; route-filter 202.50.255.0/24 exact; route-filter 203.109.128.0/17 upto /24; route-filter 203.173.128.0/17 upto /24; route-filter 210.55.184.0/24 exact; route-filter 210.55.203.0/24 exact; route-filter 210.55.248.0/21 upto /24; } then accept; } term reject { then reject; } } depending on the value of $cli Apologies for the ugly perl - just hacked it up - feel free to make it pretty and rerelease. Also check the output before you apply it - It's your responsibility remember =) On Tue, May 29, 2001 at 09:52:11AM +1200, David Robb wrote:
Now with free steak knives! [1]
As you can see, these allow for variable masks. If anyone requires specific prefixes, let me know and I'll see what I can do. We change them from time to time, and its easier this way.
[1] Ok, I was kidding about the steak knives.
--------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
Can't you do it with awk instead? :: -----Original Message----- :: From: owner-nznog(a)list.waikato.ac.nz :: [mailto:owner-nznog(a)list.waikato.ac.nz] On Behalf Of Dean Pemberton :: Sent: Tuesday, 29 May 2001 12:39 :: To: nznog(a)list.waikato.ac.nz :: Subject: Re: New improved prefix list :) :: :: :: Seeings as more people are getting them, I thought it might :: be helpful to write this. :: :: :: #!/usr/bin/perl :: $cli = 0; :: $header = 0; :: while (<>) { :: chomp; :: ($crap,$crap,$name,$crap,$crap,$crap,$prefix,$le,$limit) :: = split (/\ /,$_); :: if (!$header) { :: if ($cli){ :: print "edit policy-options policy-statement $name\n"; :: }else{ :: print "policy-statement ihug-networks {\n\tterm :: accept {\n\t\tfrom {\n"; :: } :: $header = 1; :: } :: if ($cli) { :: print "set term accept from "; :: }else{ :: print "\t\t\t"; :: } :: print "route-filter $prefix "; :: if ($le eq "le") {print "upto /$limit";}else{print "exact";} :: if ($cli) { :: print "\n"; :: }else{ :: print ";\n"; :: } :: } :: if ($cli) { :: print"set term accept then accept\nset term reject then :: reject\n"; :: } else { :: print "\t\t}\n\t\tthen accept;\n\t}\n\tterm reject :: {\n\t\t\tthen reject;\n\t}\n}\n"; :: } :: :: :: output looks like this :: :: edit policy-options policy-statement ihug-networks :: set term accept from route-filter 202.36.94.0/23 upto /24 :: set term accept from route-filter 202.37.129.0/24 exact :: set term accept from route-filter 202.37.136.0/24 exact :: set term accept from route-filter 202.37.182.0/24 exact :: set term accept from route-filter 202.37.194.0/24 exact :: set term accept from route-filter 202.49.59.0/24 exact :: set term accept from route-filter 202.49.88.0/23 upto /24 :: set term accept from route-filter 202.49.148.0/23 upto /24 :: set term accept from route-filter 202.49.176.0/23 upto /24 :: set term accept from route-filter 202.49.180.0/23 upto /24 :: set term accept from route-filter 202.49.186.0/24 exact :: set term accept from route-filter 202.49.240.0/22 upto /24 :: set term accept from route-filter 202.49.249.0/24 exact :: set term accept from route-filter 202.49.252.0/22 upto /24 :: set term accept from route-filter 202.50.84.0/24 exact :: set term accept from route-filter 202.50.103.0/24 exact :: set term accept from route-filter 202.50.255.0/24 exact :: set term accept from route-filter 203.109.128.0/17 upto /24 :: set term accept from route-filter 203.173.128.0/17 upto /24 :: set term accept from route-filter 210.55.184.0/24 exact :: set term accept from route-filter 210.55.203.0/24 exact :: set term accept from route-filter 210.55.248.0/21 upto /24 :: set term accept then accept :: set term reject then reject :: :: or this :: :: policy-statement ihug-networks { :: term accept { :: from { :: route-filter 202.36.94.0/23 upto /24; :: route-filter 202.37.129.0/24 exact; :: route-filter 202.37.136.0/24 exact; :: route-filter 202.37.182.0/24 exact; :: route-filter 202.37.194.0/24 exact; :: route-filter 202.49.59.0/24 exact; :: route-filter 202.49.88.0/23 upto /24; :: route-filter 202.49.148.0/23 upto /24; :: route-filter 202.49.176.0/23 upto /24; :: route-filter 202.49.180.0/23 upto /24; :: route-filter 202.49.186.0/24 exact; :: route-filter 202.49.240.0/22 upto /24; :: route-filter 202.49.249.0/24 exact; :: route-filter 202.49.252.0/22 upto /24; :: route-filter 202.50.84.0/24 exact; :: route-filter 202.50.103.0/24 exact; :: route-filter 202.50.255.0/24 exact; :: route-filter 203.109.128.0/17 upto /24; :: route-filter 203.173.128.0/17 upto /24; :: route-filter 210.55.184.0/24 exact; :: route-filter 210.55.203.0/24 exact; :: route-filter 210.55.248.0/21 upto /24; :: } :: then accept; :: } :: term reject { :: then reject; :: } :: } :: :: depending on the value of $cli :: :: Apologies for the ugly perl - just hacked it up - feel free :: to make it pretty and rerelease. :: Also check the output before you apply it - It's your :: responsibility remember =) :: :: :: :: :: On Tue, May 29, 2001 at 09:52:11AM +1200, David Robb wrote: :: > Now with free steak knives! [1] :: > :: > As you can see, these allow for variable masks. If anyone requires :: > specific prefixes, let me know and I'll see what I can do. :: We change them :: > from time to time, and its easier this way. :: > :: > [1] Ok, I was kidding about the steak knives. :: > :: > :: > :: > --------- :: > To unsubscribe from nznog, send email to :: majordomo(a)list.waikato.ac.nz :: > where the body of your message reads: :: > unsubscribe nznog :: --------- :: To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz :: where the body of your message reads: :: unsubscribe nznog :: :: --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
Probably - I just think in perl. Seriously though - if you can do it smaller/nicer/better/whatever, then by all means post it up. I'm not attached to it - I just thought it might save certain people a bit of time On Tue, May 29, 2001 at 12:56:02PM +1200, Juha Saarinen wrote:
Can't you do it with awk instead?
:: -----Original Message----- :: From: owner-nznog(a)list.waikato.ac.nz :: [mailto:owner-nznog(a)list.waikato.ac.nz] On Behalf Of Dean Pemberton :: Sent: Tuesday, 29 May 2001 12:39 :: To: nznog(a)list.waikato.ac.nz :: Subject: Re: New improved prefix list :) :: :: :: Seeings as more people are getting them, I thought it might :: be helpful to write this. :: :: :: #!/usr/bin/perl :: $cli = 0; :: $header = 0; :: while (<>) { :: chomp; :: ($crap,$crap,$name,$crap,$crap,$crap,$prefix,$le,$limit) :: = split (/\ /,$_); :: if (!$header) { :: if ($cli){ :: print "edit policy-options policy-statement $name\n"; :: }else{ :: print "policy-statement ihug-networks {\n\tterm :: accept {\n\t\tfrom {\n"; :: } :: $header = 1; :: } :: if ($cli) { :: print "set term accept from "; :: }else{ :: print "\t\t\t"; :: } :: print "route-filter $prefix "; :: if ($le eq "le") {print "upto /$limit";}else{print "exact";} :: if ($cli) { :: print "\n"; :: }else{ :: print ";\n"; :: } :: } :: if ($cli) { :: print"set term accept then accept\nset term reject then :: reject\n"; :: } else { :: print "\t\t}\n\t\tthen accept;\n\t}\n\tterm reject :: {\n\t\t\tthen reject;\n\t}\n}\n"; :: } :: :: :: output looks like this :: :: edit policy-options policy-statement ihug-networks :: set term accept from route-filter 202.36.94.0/23 upto /24 :: set term accept from route-filter 202.37.129.0/24 exact :: set term accept from route-filter 202.37.136.0/24 exact :: set term accept from route-filter 202.37.182.0/24 exact :: set term accept from route-filter 202.37.194.0/24 exact :: set term accept from route-filter 202.49.59.0/24 exact :: set term accept from route-filter 202.49.88.0/23 upto /24 :: set term accept from route-filter 202.49.148.0/23 upto /24 :: set term accept from route-filter 202.49.176.0/23 upto /24 :: set term accept from route-filter 202.49.180.0/23 upto /24 :: set term accept from route-filter 202.49.186.0/24 exact :: set term accept from route-filter 202.49.240.0/22 upto /24 :: set term accept from route-filter 202.49.249.0/24 exact :: set term accept from route-filter 202.49.252.0/22 upto /24 :: set term accept from route-filter 202.50.84.0/24 exact :: set term accept from route-filter 202.50.103.0/24 exact :: set term accept from route-filter 202.50.255.0/24 exact :: set term accept from route-filter 203.109.128.0/17 upto /24 :: set term accept from route-filter 203.173.128.0/17 upto /24 :: set term accept from route-filter 210.55.184.0/24 exact :: set term accept from route-filter 210.55.203.0/24 exact :: set term accept from route-filter 210.55.248.0/21 upto /24 :: set term accept then accept :: set term reject then reject :: :: or this :: :: policy-statement ihug-networks { :: term accept { :: from { :: route-filter 202.36.94.0/23 upto /24; :: route-filter 202.37.129.0/24 exact; :: route-filter 202.37.136.0/24 exact; :: route-filter 202.37.182.0/24 exact; :: route-filter 202.37.194.0/24 exact; :: route-filter 202.49.59.0/24 exact; :: route-filter 202.49.88.0/23 upto /24; :: route-filter 202.49.148.0/23 upto /24; :: route-filter 202.49.176.0/23 upto /24; :: route-filter 202.49.180.0/23 upto /24; :: route-filter 202.49.186.0/24 exact; :: route-filter 202.49.240.0/22 upto /24; :: route-filter 202.49.249.0/24 exact; :: route-filter 202.49.252.0/22 upto /24; :: route-filter 202.50.84.0/24 exact; :: route-filter 202.50.103.0/24 exact; :: route-filter 202.50.255.0/24 exact; :: route-filter 203.109.128.0/17 upto /24; :: route-filter 203.173.128.0/17 upto /24; :: route-filter 210.55.184.0/24 exact; :: route-filter 210.55.203.0/24 exact; :: route-filter 210.55.248.0/21 upto /24; :: } :: then accept; :: } :: term reject { :: then reject; :: } :: } :: :: depending on the value of $cli :: :: Apologies for the ugly perl - just hacked it up - feel free :: to make it pretty and rerelease. :: Also check the output before you apply it - It's your :: responsibility remember =) :: :: :: :: :: On Tue, May 29, 2001 at 09:52:11AM +1200, David Robb wrote: :: > Now with free steak knives! [1] :: > :: > As you can see, these allow for variable masks. If anyone requires :: > specific prefixes, let me know and I'll see what I can do. :: We change them :: > from time to time, and its easier this way. :: > :: > [1] Ok, I was kidding about the steak knives. :: > :: > :: > :: > --------- :: > To unsubscribe from nznog, send email to :: majordomo(a)list.waikato.ac.nz :: > where the body of your message reads: :: > unsubscribe nznog :: --------- :: To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz :: where the body of your message reads: :: unsubscribe nznog :: ::
--------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
Hold on... (firing up Visual Basic.NET in the background).... :: -----Original Message----- :: From: Dean Pemberton [mailto:dean(a)flatnet.gen.nz] :: Sent: Tuesday, 29 May 2001 13:04 :: To: Juha Saarinen :: Cc: nznog(a)list.waikato.ac.nz :: Subject: Re: New improved prefix list :) :: :: :: :: Probably - I just think in perl. :: :: Seriously though - if you can do it :: smaller/nicer/better/whatever, then by all means post it up. :: :: I'm not attached to it - I just thought it might save :: certain people a bit of time :: :: :: --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
On Tue, May 29, 2001 at 12:56:02PM +1200, Juha Saarinen wrote:
Can't you do it with awk instead?
#!/usr/bin/awk -f BEGIN { # insert more stuff here if you have a test box to play with, or can # be bothered to go look at the manuals when you've drunk just enough # Niagra region chardonnay to start to think that it tastes half-decent trans["le"] = "upto"; } /^ip prefix-list [A-Za-z0-9-]+ permit [0-9\.]+\/[0-9]+/ && \ trans[$6] != "" && $7 ~ /[0-9]+/ { phrase[$3 ":" clauses[$3]++] = "route-filter " $5 " " trans[$6] " /" $7; next; } /^ip prefix-list [A-Za-z0-9-]+ seq [0-9]+ permit [0-9\.]+\/[0-9]+/ && \ trans[$8] != "" && $9 ~ /[0-9]+/ { phrase[$3 ":" clauses[$3]++] = "route-filter " $7 " " trans[$8] " /" $9; next; } /^ip prefix-list [A-Za-z0-9-]+ permit [0-9\.]+\/[0-9]+/ { phrase[$3 ":" clauses[$3]++] = "route-filter " $5 " exact"; } /^ip prefix-list [A-Za-z0-9-]+ seq [0-9]+ permit [0-9\.]+\/[0-9]+/ { phrase[$3 ":" clauses[$3]++] = "route-filter " $7 " exact"; } END { for (c in clauses) { printf "policy-statement %s {\n\tterm accept {\n\t\tfrom {\n", c; for (i = 0; i < clauses[c]; i++) printf "\t\t\t%s;\n", phrase[c ":" i]; printf "\t\t}\n\t\tthen accept;\n\t}\n\tterm reject {\n"; printf "\t\t\tthen reject;\n\t}\n}\n"; } } --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
Ok Mr SmartyPants. Lets see you do it in Befunge. On Mon, 28 May 2001, Joe Abley wrote:
On Tue, May 29, 2001 at 12:56:02PM +1200, Juha Saarinen wrote:
Can't you do it with awk instead?
#!/usr/bin/awk -f
--- Matt Camp --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
On Tue, May 29, 2001 at 03:37:50PM +1200, Matt Camp wrote:
Ok Mr SmartyPants.
Lets see you do it in Befunge.
Doing it in Befunge would require integration of the IOS source into the program, since the instruction pointer traverses both data and code. Clearly the job of formatting the source into a valid befunge-97 automaton is a task that best belongs in IOS, rather than some external script. I will leave it to you to write up the feature request. 0"): spleh taht epoH">v ,: ^_@ Joe --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
Attached is my version. It's considerably larger, but a litte more versitile. Give it the output of a 'write term' and it will convert all the prefix-lists into JUNOS policy-statements. There is a '-c' flag that will cause the output to be compatible with the CLI (as per $cli in your version). Dean Pemberton wrote:
Seeings as more people are getting them, I thought it might be helpful to write this.
<snip>
Apologies for the ugly perl - just hacked it up - feel free to make it pretty and rerelease. Also check the output before you apply it - It's your responsibility remember =)
-- Dylan Hall IP Engineer TelstraSaturn Ltd Ph: +64 4 9228400 Fax: +64 4 9228401
Thanks man - I don't actually have a use for any of this (for obvious reasons). But it's good to see this sort of thing becoming availible =) On Tue, May 29, 2001 at 03:32:32PM +1200, Dylan Hall wrote:
Attached is my version. It's considerably larger, but a litte more versitile. Give it the output of a 'write term' and it will convert all the prefix-lists into JUNOS policy-statements. There is a '-c' flag that will cause the output to be compatible with the CLI (as per $cli in your version).
Dean Pemberton wrote:
Seeings as more people are getting them, I thought it might be helpful to write this.
<snip>
Apologies for the ugly perl - just hacked it up - feel free to make it pretty and rerelease. Also check the output before you apply it - It's your responsibility remember =)
-- Dylan Hall IP Engineer TelstraSaturn Ltd Ph: +64 4 9228400 Fax: +64 4 9228401
--------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
Of course, if you all had your entries in an IRRd, then you could use RtConfig to generate the lists for other systems as well and you'd have the additional benefit of being able to post a note to nznog saying, "see IRRd on host x for changes in our policy"
From the RtConfig man page:
RtConfig analyzes the routing policies registered in the Internet Routing Registry (IRR) and produces router con- figuration files. It supports cisco, junos, nortel/bay, gated, RSd router configuration file formats. RtConfig reads lines form the standard input, and prints them to the standard output, except for the lines that start with "@RtConfig" which instruct RtConfig to perform special operation (please see "RtConfig Commands" Section below). RtConfig establishes an radbserver connection to query IRR. --------- To unsubscribe from nznog, send email to majordomo(a)list.waikato.ac.nz where the body of your message reads: unsubscribe nznog
participants (8)
-
Andy Linton
-
David Robb
-
Dean Pemberton
-
Dylan Hall
-
Joe Abley
-
Juha Saarinen
-
Matt Camp
-
Tim Shackleton