summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/vyatta-update-static-route.pl30
-rw-r--r--scripts/vyos-update-rpki-cache.py89
2 files changed, 0 insertions, 119 deletions
diff --git a/scripts/vyatta-update-static-route.pl b/scripts/vyatta-update-static-route.pl
deleted file mode 100755
index c1c35bf8..00000000
--- a/scripts/vyatta-update-static-route.pl
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/perl
-
-use Getopt::Long;
-use strict;
-use lib "/opt/vyatta/share/perl5";
-use Vyatta::Config;
-
-my ($iface, $route, $table, $option);
-GetOptions("interface=s" => \$iface,
- "route=s" => \$route,
- "table=s" => \$table,
- "option=s" => \$option
- );
-my $hash = `echo $iface $route $table | md5sum | cut -c1-10`;
-chomp $hash;
-my $FILE_DHCP_HOOK = "/etc/dhcp/dhclient-exit-hooks.d/static-route-$hash";
-my $dhcp_hook = '';
-if ($option eq 'create') {
- $dhcp_hook =<<EOS;
-#!/bin/sh
-/opt/vyatta/bin/sudo-users/vyatta-static-dhcp.pl --interface=\"\$interface\" --dhcp=\"$iface\" --route=\"$route\" --table=\"$table\" --new_ip=\"\$new_ip_address\" --old_ip=\"\$old_ip_address\" --new_routers=\"\$new_routers\" --old_routers=\"\$old_routers\" --reason=\"\$reason\"
-EOS
-}
-
-open my $dhcp_hook_file, '>', $FILE_DHCP_HOOK
- or die "cannot open $FILE_DHCP_HOOK";
-print ${dhcp_hook_file} $dhcp_hook;
-close $dhcp_hook_file;
-exit 0;
-
diff --git a/scripts/vyos-update-rpki-cache.py b/scripts/vyos-update-rpki-cache.py
deleted file mode 100644
index f290d119..00000000
--- a/scripts/vyos-update-rpki-cache.py
+++ /dev/null
@@ -1,89 +0,0 @@
-#!/usr/bin/env python3
-
-import sys
-import subprocess
-
-import vyos.config
-
-
-base_path = "protocols rpki "
-
-def create_cache(c, cache):
- new_port = c.return_value(base_path + "cache {0} port".format(cache))
- new_addr = c.return_value(base_path + "cache {0} address".format(cache))
- new_pref = c.return_value(base_path + "cache {0} preference".format(cache))
-
- ssh = False
- if c.exists(base_path + "cache {0} ssh".format(cache)):
- ssh = True
- new_user = c.return_value(base_path + "cache {0} ssh username".format(cache))
- new_pubkey = c.return_value(base_path + "cache {0} ssh public-key-file".format(cache))
- new_privkey = c.return_value(base_path + "cache {0} ssh private-key-file".format(cache))
- new_known_hosts = c.return_value(base_path + "cache {0} ssh known-hosts-file".format(cache))
-
- if (not new_user) or (not new_pubkey) or (not new_privkey) or (not new_known_hosts):
- print("If SSH is used for RPKI cache, username, public/private keys, and known hosts file must be defined")
- sys.exit(1)
-
- if (not new_addr) or (not new_port):
- print("Address and port must be defined for RPKI cache servers")
- sys.exit(1)
-
- if not new_pref:
- new_pref = 1
-
- if ssh:
- subprocess.call(""" vtysh -c 'conf t' -c 'rpki' -c 'rpki cache {0} {1} {2} {3} {4} {5} preference {6}' """.format(new_addr, new_port, new_user, new_privkey, new_pubkey, new_known_hosts, new_pref), shell=True)
- else:
- subprocess.call(""" vtysh -c 'conf t' -c 'rpki' -c 'rpki cache {0} {1} preference {2}' """.format(new_addr, new_port, new_pref), shell=True)
-
-def delete_cache(c, cache):
- ssh = False
- port = c.return_effective_value(base_path + "cache {0} port".format(cache))
- addr = c.return_effective_value(base_path + "cache {0} address".format(cache))
- pref = c.return_effective_value(base_path + "cache {0} preference".format(cache))
-
- if not pref:
- pref = 1
-
- if c.exists_effective(base_path + "cache {0} ssh".format(cache)):
- ssh = True
- user = c.return_effective_value(base_path + "cache {0} ssh username".format(cache))
- pubkey = c.return_effective_value(base_path + "cache {0} ssh public-key-file".format(cache))
- privkey = c.return_effective_value(base_path + "cache {0} ssh private-key-file".format(cache))
- known_hosts = c.return_effective_value(base_path + "cache {0} ssh known-hosts-file".format(cache))
-
- if ssh:
- subprocess.call(""" vtysh -c 'conf t' -c 'rpki' -c 'no rpki cache {0} {1} {2} {3} {4} {5} preference {6}' """.format(addr, port, user, privkey, pubkey, known_hosts, pref), shell=True)
-
- else:
- subprocess.call(""" vtysh -c 'conf t' -c 'rpki' -c 'no rpki cache {0} {1} preference {2}' """.format(addr, port, pref), shell=True)
-
-
-config = vyos.config.Config()
-
-caches = config.list_nodes(base_path + "cache")
-orig_caches = config.list_effective_nodes(base_path + "cache")
-
-# RPKI caches can only be manipulated when RPKI is stopped
-print("Stopping RPKI")
-subprocess.call(""" vtysh -c 'rpki stop' """, shell=True)
-
-if not caches:
- for cache in orig_caches:
- delete_cache(config, cache)
-else:
- for cache in caches:
- if cache in orig_caches:
- delete_cache(config, cache)
- create_cache(config, cache)
-
- for cache in orig_caches:
- if not cache in caches:
- # No longer exists
- delete_cache(config, cache)
-
-if caches:
- print("Starting RPKI")
- subprocess.call(""" vtysh -c 'rpki start' """, shell=True)
-