From: hasso Date: Wed, 13 Oct 2004 08:47:32 +0000 (+0000) Subject: All access lists (IPv4 and IPv6) are used by all daemons to limit access to X-Git-Tag: frr-2.0-rc1~3465 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=43fb1352a1cc9ef05ac7124d18099ed6f8c3986a;p=mirror%2Ffrr.git All access lists (IPv4 and IPv6) are used by all daemons to limit access to vty. --- diff --git a/vtysh/ChangeLog b/vtysh/ChangeLog index f3a4da9a59..7b8eaf22ee 100644 --- a/vtysh/ChangeLog +++ b/vtysh/ChangeLog @@ -1,3 +1,8 @@ +2004-10-13 Hasso Tepper + + * extract.pl.in: All daemons can use both IPv6 and IPv4 access lists + to limit access to vty. + 2004-09-17 Paul Jakma * vtysh.c: (vtysh_client_execute) fix the sync fix. The 4th and diff --git a/vtysh/extract.pl.in b/vtysh/extract.pl.in index d2fc42ba9c..ef8c34ff3d 100755 --- a/vtysh/extract.pl.in +++ b/vtysh/extract.pl.in @@ -96,11 +96,7 @@ foreach (@ARGV) { $protocol = "VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD"; } if ($file =~ /filter.c/) { - if ($defun_array[1] =~ m/ipv6/) { - $protocol = "VTYSH_ZEBRA|VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD"; - } else { - $protocol = "VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD"; - } + $protocol = "VTYSH_ALL"; } if ($file =~ /plist.c/) { if ($defun_array[1] =~ m/ipv6/) {