[2edec46] | 1 | #!/usr/bin/perl |
---|
| 2 | |
---|
| 3 | use strict; |
---|
| 4 | |
---|
| 5 | use gateway_lib; |
---|
| 6 | |
---|
| 7 | use Getopt::Long; |
---|
[f8fa72b] | 8 | use File::Copy; |
---|
| 9 | use IO::File; |
---|
[2edec46] | 10 | |
---|
| 11 | my $ssh_pubkey; |
---|
| 12 | my $tunnelip; |
---|
| 13 | my $peer; |
---|
[8d4e4fb] | 14 | my $use_file; |
---|
[4e9719b] | 15 | my $fed_dir = "/usr/local/federation/"; |
---|
[8d4e4fb] | 16 | my %opts = ( |
---|
| 17 | 'ssh_pubkey=s' => \$ssh_pubkey, |
---|
[2edec46] | 18 | 'tunnelip' => \$tunnelip, |
---|
| 19 | 'peer=s' => \$peer, |
---|
[8d4e4fb] | 20 | 'use_file' => \$use_file, |
---|
[2edec46] | 21 | ); |
---|
| 22 | |
---|
[8d4e4fb] | 23 | exit(20) unless GetOptions(%opts); |
---|
| 24 | |
---|
[f8fa72b] | 25 | if ($use_file) { |
---|
| 26 | gateway_lib::read_config(gateway_lib::config_filename(), \%opts) |
---|
| 27 | } |
---|
| 28 | |
---|
| 29 | my $uname = `uname`; |
---|
| 30 | chomp $uname; |
---|
[8d4e4fb] | 31 | |
---|
[4e9719b] | 32 | # on portals make sure client.conf is in the override position (in fed_dir). |
---|
| 33 | my $client_conf = gateway_lib::client_conf_filename(); |
---|
| 34 | |
---|
| 35 | copy($client_conf, "$fed_dir/etc/client.conf") |
---|
| 36 | unless $client_conf =~ /^$fed_dir/; |
---|
| 37 | |
---|
[f8fa72b] | 38 | if ($uname =~ /Linux/) { |
---|
[1d91791f] | 39 | # Restart sshd with tunnel params |
---|
| 40 | gateway_lib::set_sshd_params( |
---|
| 41 | { 'GatewayPorts' => 'yes', 'PermitTunnel' => 'yes' } ); |
---|
| 42 | system("/etc/init.d/sshd restart"); |
---|
[f8fa72b] | 43 | gateway_lib::import_key($ssh_pubkey,'/root/.ssh/authorized_keys') |
---|
| 44 | if $ssh_pubkey; |
---|
[64e774d] | 45 | # Install bridging software if not present |
---|
| 46 | system('/usr/bin/yum -y install bridge-utils'); |
---|
[f8fa72b] | 47 | } |
---|
| 48 | elsif ($uname =~ /FreeBSD/ ){ |
---|
| 49 | gateway_lib::set_sshd_params( |
---|
| 50 | { 'GatewayPorts' => 'yes', 'PermitTunnel' => 'yes' } ); |
---|
| 51 | system("/etc/rc.d/sshd restart"); |
---|
[2edec46] | 52 | |
---|
[f8fa72b] | 53 | gateway_lib::import_key($ssh_pubkey,'/root/.ssh/authorized_keys') |
---|
| 54 | if $ssh_pubkey; |
---|
[2edec46] | 55 | |
---|
[f8fa72b] | 56 | # Need these to make the Ethernet tap and bridge work. |
---|
| 57 | system("kldload /boot/kernel/bridgestp.ko") |
---|
| 58 | if -r "/boot/kernel/bridgestp.ko"; |
---|
| 59 | system("kldload /boot/kernel/if_bridge.ko"); |
---|
| 60 | system("kldload /boot/kernel/if_tap.ko"); |
---|
| 61 | } |
---|
[2edec46] | 62 | |
---|
| 63 | if ( $tunnelip ) { |
---|
| 64 | my ($interface, $ip, $netmask, $mac, $router) = |
---|
| 65 | gateway_lib::deter_tunnelip(); |
---|
| 66 | |
---|
[2b35261] | 67 | gateway_lib::configure_outgoing_iface($interface, $ip, $netmask); |
---|
[2edec46] | 68 | # Add the route to a peer. Wait up to an hour for the peer's IP address to |
---|
| 69 | # appear in the DNS. |
---|
[55779d4] | 70 | gateway_lib::add_route($peer, $router, 1, 60 *60) |
---|
| 71 | if $peer && $router; |
---|
[2edec46] | 72 | } |
---|
[64e774d] | 73 | my $coord_fn = "$fed_dir/etc/prep_done"; |
---|
| 74 | my $coord_file = new IO::File(">$coord_fn") || die "Cannot open $coord_fn"; |
---|
| 75 | |
---|
| 76 | print $coord_file `date`; |
---|
| 77 | $coord_file->close(); |
---|
[2edec46] | 78 | |
---|
| 79 | exit(0); |
---|
[2b35261] | 80 | |
---|
| 81 | =pod |
---|
| 82 | |
---|
| 83 | =head1 NAME |
---|
| 84 | |
---|
| 85 | B<prep_tunnel.pl> - Prepare a tunnel node for use as either a service or connectivity gateway. |
---|
| 86 | |
---|
| 87 | =head1 OPTIONS |
---|
| 88 | |
---|
| 89 | =over 8 |
---|
| 90 | |
---|
| 91 | =item B<peer=>I<hostname> |
---|
| 92 | |
---|
| 93 | The other gateway providing forwarding. |
---|
| 94 | |
---|
| 95 | =item B<ssh_pubkey=>I<keyfile> |
---|
| 96 | |
---|
| 97 | A public to install as authorized. |
---|
| 98 | |
---|
| 99 | =item B<tunnelip> |
---|
| 100 | |
---|
| 101 | True if the testbed uses the DETER tunnelip extension to provide external |
---|
| 102 | connectivity information |
---|
| 103 | |
---|
[8d4e4fb] | 104 | =item B<use_file> |
---|
| 105 | |
---|
| 106 | If given read additional parameters from the file in |
---|
[c6d6c43] | 107 | /proj/I<project>/exp/I<experiment>/tmp/I<hostname>.gw/conf where those are the |
---|
[8d4e4fb] | 108 | current testbed project and experiment and the hostname is before the first |
---|
| 109 | dot. The file is option: value. |
---|
| 110 | |
---|
| 111 | |
---|
[2b35261] | 112 | =back |
---|
| 113 | |
---|
| 114 | =head1 SYNOPSIS |
---|
| 115 | |
---|
| 116 | B<prep_gateway.pl> laods the necessary kernel modules for low-level bridging |
---|
| 117 | configures the local sshd to allow it, restarts that sshd, and installs the |
---|
| 118 | given key in root's authorized keys. |
---|
| 119 | |
---|
| 120 | If the gateway supports DETER gateway, it setablishes outside connectivity and |
---|
| 121 | adds a host rout to the given peer. |
---|
| 122 | |
---|
| 123 | =head1 AUTHORS |
---|
| 124 | |
---|
| 125 | Ted Faber <faber@isi.edu> |
---|
| 126 | |
---|
| 127 | =cut |
---|