summaryrefslogtreecommitdiffstats
path: root/bin/rancid-fe.in
blob: 604040d283ad32ce9e67982f66096ef98e265662 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#! @PERLV_PATH@
##
## $Id: rancid-fe.in,v 1.42 2006/08/12 00:44:53 heas Exp $
##
## Copyright (C) 1997-2006 by Terrapin Communications, Inc.
## All rights reserved.
##
## This software may be freely copied, modified and redistributed
## without fee for non-commerical purposes provided that this license
## remains intact and unmodified with any RANCID distribution.
##
## 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.
##
## Except where noted otherwise, rancid was written by and is maintained by
## Henry Kilmer, John Heasley, Andrew Partan, Pete Whiting, and Austin Schutz.
##
#
#  rancid-FE - front-end to rancid/jrancid/etc. for use with par.
#
# usage: rancid-fe <router>:<vendor>
#

require 5;

($router, $vendor) = split('\:', $ARGV[0]);
$vendor =~ tr/[A-Z]/[a-z]/;

%vendortable = (
    'alteon'		=> 'arancid',
    'baynet'		=> 'brancid',
    'cat5'		=> 'cat5rancid',
    'cisco'		=> 'rancid',
    'css'		=> 'cssrancid',
    'enterasys'		=> 'rivrancid',
    'erx'		=> 'jerancid',
    'extreme'		=> 'xrancid',
    'ezt3'		=> 'erancid',
    'force10'		=> 'f10rancid',
    'foundry'		=> 'francid',
    'hitachi'		=> 'htrancid',
    'hp'		=> 'hrancid',
    'juniper'		=> 'jrancid',
    'mrtd'		=> 'mrancid',
    'netscaler'		=> 'nsrancid',
    'netscreen'		=> 'nrancid',
    'procket'		=> 'prancid',
    'redback'		=> 'rrancid',
    'riverstone'	=> 'rivrancid',
    'tnt'		=> 'tntrancid',
    'zebra'		=> 'zrancid'
);

if ($vendortable{$vendor} eq "") {
    printf(STDERR "unknown router manufacturer for $router: $vendor\n");
    exit(-1);
} else {
    exec($vendortable{$vendor} . " $router");
}

printf(STDERR "exec failed router manufacturer $vendor: $!\n");
exit(-1);