This is a easy and small way to BackUp a Cisco SW or RW using GNU/Linux ( Mandriva 2008.1 )
1th we need to instal TFTP:
# urpmi tftp-server
The service must be like this:
# cat /etc/xinetd.d/tftp
#############################################################################
service tftp
{
disable = no
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /home/janux/BackUpCiscos
per_source = 11
cps = 100 2
flags = IPv4
}
#############################################################################
mkdir /home/janux/BackUpCiscos
chkconfig xinetd off
/etc/init.d/xinetd restart
Stopping xinetd [ failed ]
Starting xinetd [ OK ]
(more…)