summaryrefslogtreecommitdiffstats
path: root/bin/rancid-fe.in
blob: 8e5d3336d51b08c8c2abe390425d7bf769ccec5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!@PERLV_PATH@
##
##
## Copyright (C) 1997 by Henry Kilmer.
## All rights reserved.
##
## This software may be freely copied, modified and redistributed without
## fee for non-commerical purposes provided that this copyright notice is
## preserved intact on all copies and modified copies.
##
## There is no warranty or other guarantee of fitness of this software.
## It is provided solely "as is". The author(s) disclaim(s) all
## responsibility and liability with respect to this software's usage
## or its effect upon hardware, computer systems, other software, or
## anything else.
##
##
#
#  rancid-FE - front-end to rancid/jrancid for use with par. 
#
# usage: rancid-fe <router>:<vendor>
#

require 5;

($router, $vendor) = split('\:', $ARGV[0]);

if ($vendor =~ /^cisco$/i) {
    exec('rancid', $router);
} elsif ($vendor =~ /^cat5$/i) {
    exec('cat5rancid', $router);
} elsif ($vendor =~ /^ezt3$/i) {
    exec('erancid', $router);
} elsif ($vendor =~ /^juniper$/i) {
    exec('jrancid', $router);
} elsif ($vendor =~ /^foundry$/i) {
    exec('francid', $router);
} elsif ($vendor =~ /^redback$/i) {
    exec('rrancid', $router);
}

printf(STDERR "unknown router manufacturer for $router: $vendor\n");
exit(-1);