diff options
Diffstat (limited to 'vtysh')
-rw-r--r-- | vtysh/ChangeLog | 5 | ||||
-rwxr-xr-x | vtysh/extract.pl.in | 4 | ||||
-rw-r--r-- | vtysh/vtysh.c | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/vtysh/ChangeLog b/vtysh/ChangeLog index b9b78f5e..b69e065f 100644 --- a/vtysh/ChangeLog +++ b/vtysh/ChangeLog @@ -1,3 +1,8 @@ +2007-02-12 Juergen Kammer <j.kammer@eurodata.de> + * extract.pl: AS4 compatibility for router bgp ASNUMBER + * extract.pl.in: AS4 compatibility for router bgp ASNUMBER + * vtysh.c: AS4 compatibility for router bgp ASNUMBER + 2006-07-27 Andrew J. Schorr <ajschorr@alumni.princeton.edu> * vtysh_main.c: (usage) Add new -d and -E options. And note that diff --git a/vtysh/extract.pl.in b/vtysh/extract.pl.in index 98a9ddde..426a7bdd 100755 --- a/vtysh/extract.pl.in +++ b/vtysh/extract.pl.in @@ -37,8 +37,8 @@ $ignore{'"router ripng"'} = "ignore"; $ignore{'"router ospf"'} = "ignore"; $ignore{'"router ospf <0-65535>"'} = "ignore"; $ignore{'"router ospf6"'} = "ignore"; -$ignore{'"router bgp <1-65535>"'} = "ignore"; -$ignore{'"router bgp <1-65535> view WORD"'} = "ignore"; +$ignore{'"router bgp ASNUMBER"'} = "ignore"; +$ignore{'"router bgp ASNUMBER view WORD"'} = "ignore"; $ignore{'"router isis WORD"'} = "ignore"; $ignore{'"router zebra"'} = "ignore"; $ignore{'"address-family ipv4"'} = "ignore"; diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c index 9b7d300f..4e71b018 100644 --- a/vtysh/vtysh.c +++ b/vtysh/vtysh.c @@ -838,7 +838,7 @@ DEFUNSH (VTYSH_ALL, DEFUNSH (VTYSH_BGPD, router_bgp, router_bgp_cmd, - "router bgp <1-65535>", + "router bgp ASNUMBER", ROUTER_STR BGP_STR AS_STR) |