Blame view

sync-router 5.58 KB
Frederik Lindenaar authored
1
2
3
4
5
6
7
8
#!/bin/bash -e
#
# sync-router	shell scripts to synchronize cisco configuration and DHCP static
#		lease files with with GIT repository. Operations performed:
#		  - update header of modified DHCP static lease files, upload
#		    them using using scp and add them to the next commit
#		  - restart Cisco DHCP service after updating static lease files
#		  - copy Cisco startup-config using scp and add to next commit
Frederik Lindenaar authored
9
10
#		  - update IOS image files on the router when checked in to the
#		    repository, update startup-config file accordingly on router
Frederik Lindenaar authored
11
12
#		  - commit changes to the git repository
#
Frederik Lindenaar authored
13
# Version 1.1, latest version at: https://gitlab.lindenaar.net/scripts/cisco
Frederik Lindenaar authored
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#
# Copyright (c) 2016 Frederik Lindenaar
#
# This script is free software: you can redistribute and/or modify it under the
# terms of version 3 of the GNU General Public License as published by the Free
# Software Foundation, or (at your option) any later version of the license.
#
# This script is distributed in the hope that it will be useful but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# this program.  If not, visit <http://www.gnu.org/licenses/> to download it.

### Configuration ###
router=`basename \`dirname $0 | pwd\``	# name of router - based on directory
Frederik Lindenaar authored
30
31
32
dhcpfiles=dhcp-\*			# list/pattern of dhcp lease files
imagefiles=c??00-universalk9-mz.SPA.\*	# list/pattern of IOS image files
fileto=flash				# location of dhcp/IOS files on cisco
Frederik Lindenaar authored
33
34
35
36

### Implementation ###
echo updating with $router
Frederik Lindenaar authored
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Support function to download a file from the router
# parameters:	$1 - filename to be copied and $2 - (optional) target filename
# when no target filename is provided the source file will be downloaded to the
# current directory with the same name. Adds downloaded file to git changeset
router_file_download() {
  fromfile=${1?ERROR: at least one filename is required to copy from router}
  tofile=${2:-$fromfile}
  filesrc=$fileto
  if [ "$fromfile" == startup-config ]; then
	filesrc=nvram
  fi
  echo downloading $tofile from router $filesrc
  scp -q $router:$filesrc:$fromfile $tofile
  git add $tofile
}

# Support function to upload a file to the router
# parameters:	$1 - filename to be copied and $2 - (optional) target filename
# when a target filename is provided the source file will be moved to the target
# file after uploading and the target file is added to the git changeset
router_file_upload() {
  fromfile=${1?ERROR: at least one filename is required to copy to router}
  tofile=${2:-$fromfile}
  filedst=$fileto
  if [ "$fromfile" == startup-config ]; then
	filedst=nvram
  fi
  echo uploading new/updated $tofile to router $filedst
  scp -q $fromfile $router:$filedst:$tofile
  if [ "$fromfile" != "$tofile" ]; then
	mv $fromfile $tofile
	git add $tofile
  fi
}

# Support function to remove a file from the router
# parameters:	$1 - filename to be removed
router_file_remove() {
  delfile=${1?ERROR: need a filename to remove from router}
  echo removing $delfile as it is no longer in the repository
  ssh -q $router "delete /force $fileto:$delfile"
}


# Fetch the start-up configuration from the router
router_file_download startup-config
Frederik Lindenaar authored
84
# Process the DHCP static lease files that have changed
Frederik Lindenaar authored
85
git status -s "$dhcpfiles" | while read status filename token newfilename
Frederik Lindenaar authored
86
87
88
89
90
91
do
  case $status in
    \?\?)
	echo skipping $filename as it is not yet added to the repository
	;;
    D)
Frederik Lindenaar authored
92
93
94
95
96
	router_file_remove $filename
	;;
    R)
	router_file_remove $filename
	router_file_upload $newfilename
Frederik Lindenaar authored
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
	;;
    A |M)
  	echo updating and uploading modified file $filename
	head -2 $filename | while read tag value
	  do
	    case $tag in
	      \*time\*)
		date +"$tag %h %d %Y %l:%M %p" > .$filename.$$.tmp
		;;
	      \*version\*)
		echo $tag $[ $value + 1 ] >> .$filename.$$.tmp
		;;
	      *)
		echo "found unknown entry \"$tag $value\", aborting"
		exit 1
		;;
	      esac
	  done
	tail +3 $filename >> .$filename.$$.tmp
Frederik Lindenaar authored
116
	router_file_upload .$filename.$$.tmp $filename
Frederik Lindenaar authored
117
118
119
120
121
122
123
124
125
	;;
    *)
	echo unsupported git status "$status", aborting
	exit 1
	;;
  esac
done

# Restart the DHCP service on the router if any of the dhcp files changed
Frederik Lindenaar authored
126
if git status -s "$dhcpfiles" | egrep -q ^[MAD]; then
Frederik Lindenaar authored
127
128
129
130
131
132
133
134
135
136
137
  echo restarting dhcp service
  cat << EOT | ssh -q $router
configure terminal
no service dhcp
service dhcp
exit
exit
EOT
fi
Frederik Lindenaar authored
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
# Process the IOS image files that have changed
git status -s "$imagefiles" | while read status filename token newfilename
do
  case $status in
    \?\?)
	echo skipping $filename as it is not yet added to the repository
	;;
    R)
	router_file_remove $filename
	router_file_upload $newfilename
	;;
    D)
	router_file_remove $filename
	;;
    A |M)
	router_file_upload $filename
	;;
    *)
	echo unsupported git status "$status", aborting
	exit 1
	;;
  esac
done

# Update the boot images in the startup-config file if we're updating any images
if git status -s "$imagefiles" | egrep -q ^[MADR]; then
  fgrep -n "boot system $fileto" startup-config | cut -d: -f1 > .startup-config.$$.lines
  head -$[ `head -1 .startup-config.$$.lines` -1 ] startup-config > .startup-config.$$
  git ls-files $imagefiles | sort -r | sed "s/^/boot system $fileto /g" >> .startup-config.$$
  tail +$[ `tail -1 .startup-config.$$.lines` +1 ] startup-config >> .startup-config.$$
  rm .startup-config.$$.lines
  router_file_upload .startup-config.$$ startup-config
fi


# show what has changed in the startup config and commit to the repository
git diff --cached startup-config 
Frederik Lindenaar authored
175
git commit || git reset HEAD startup-config