summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhasso <hasso>2004-10-13 08:47:32 +0000
committerhasso <hasso>2004-10-13 08:47:32 +0000
commitf6ec19d750fe23ea7bb49af649fbe77edabdba13 (patch)
tree499f643d06265733c4ad6114499d6a0df5332747
parent7ec59aa94be38b7b5983d94bb30bae79dbe2c980 (diff)
downloadquagga-f6ec19d750fe23ea7bb49af649fbe77edabdba13.tar.bz2
quagga-f6ec19d750fe23ea7bb49af649fbe77edabdba13.tar.xz
All access lists (IPv4 and IPv6) are used by all daemons to limit access to
vty.
-rw-r--r--vtysh/ChangeLog5
-rwxr-xr-xvtysh/extract.pl.in6
2 files changed, 6 insertions, 5 deletions
diff --git a/vtysh/ChangeLog b/vtysh/ChangeLog
index f3a4da9a..7b8eaf22 100644
--- a/vtysh/ChangeLog
+++ b/vtysh/ChangeLog
@@ -1,3 +1,8 @@
+2004-10-13 Hasso Tepper <hasso at quagga.net>
+
+ * extract.pl.in: All daemons can use both IPv6 and IPv4 access lists
+ to limit access to vty.
+
2004-09-17 Paul Jakma <paul@dishone.st>
* 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 d2fc42ba..ef8c34ff 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/) {