summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/rl-system.init15
-rw-r--r--scripts/snmp/vyatta-snmp.pl37
2 files changed, 46 insertions, 6 deletions
diff --git a/scripts/rl-system.init b/scripts/rl-system.init
index f74007cc..5b81a4fd 100755
--- a/scripts/rl-system.init
+++ b/scripts/rl-system.init
@@ -78,6 +78,21 @@ add_new_serial_if () {
fi
}
+proc_flags ()
+{
+ # reset_promiscous_arp_response
+ echo 1 > /proc/sys/net/ipv4/conf/default/arp_filter
+ # set_ip_forwarding
+ echo 1 > /proc/sys/net/ipv4/ip_forward
+
+ # if a primary address is removed from an interface promote and
+ # secondary available
+ echo 1 > /proc/sys/net/ipv4/conf/all/promote_secondaries
+
+ # set maximum rmem_max to accomodate netlink buffers
+ echo 1048576 > /proc/sys/net/core/rmem_max
+}
+
## Update the version information
update_version_info () {
if [ -f ${vyatta_sysconfdir}/version.master ]; then
diff --git a/scripts/snmp/vyatta-snmp.pl b/scripts/snmp/vyatta-snmp.pl
index f12bcc45..0301a041 100644
--- a/scripts/snmp/vyatta-snmp.pl
+++ b/scripts/snmp/vyatta-snmp.pl
@@ -74,12 +74,37 @@ sub snmp_get_values {
my @communities = $config->listNodes();
foreach my $community (@communities) {
- my $authorization = $config->returnValue("$community authorization");
- if (defined $authorization and $authorization eq "rw") {
- $output .= "rwcommunity $community\n";
- } else {
- $output .= "rocommunity $community\n";
- }
+ my $authorization = $config->returnValue("$community authorization");
+ my @clients = $config->returnValues("$community client");
+ my @networks = $config->returnValues("$community network");
+
+ if (scalar(@clients) == 0 and scalar(@networks) == 0){
+ if (defined $authorization and $authorization eq "rw") {
+ $output .= "rwcommunity $community\n";
+ } else {
+ $output .= "rocommunity $community\n";
+ }
+ } else {
+ if (scalar(@clients) != 0){
+ foreach my $client (@clients){
+ if (defined $authorization and $authorization eq "rw") {
+ $output .= "rwcommunity $community $client\n";
+ } else {
+ $output .= "rocommunity $community $client\n";
+ }
+ }
+ }
+ if (scalar(@networks) != 0){
+ foreach my $network (@networks){
+ if (defined $authorization and $authorization eq "rw") {
+ $output .= "rwcommunity $community $network\n";
+ } else {
+ $output .= "rocommunity $community $network\n";
+ }
+
+ }
+ }
+ }
}
$config->setLevel("protocols snmp");