> "Eduardo P. Román O." wrote:
> 
> Who know, how can i get the config of the router from my linux ????

Haven't done this in a while since I don't use my Cisco any more...  

writing the config to a net device with tftp:

ln -s /tftpboot /home/tftpboot

/etc/xinetd.d/tftp:
service tftp
{
        socket_type             = dgram
        wait                    = yes
        user                    = nobody
        log_on_success          += USERID
        log_on_failure          += USERID
        server                  = /usr/sbin/in.tftpd
        server_args             = "-s /home/tftpboot"
        disable                 = no
}

service tftp start

touch /home/tftpboot/<name_of_config_file>

on router:

write net (and follow prompts -- use same <name_of_config_file>)

I don't recall the details; but you may have to use one of:
  /<name_of_config_file>
  /tftpboot/<name_of_config_file>
  /home/tftpboot/<name_of_config_file>
to be able to write the config to the Linux box.

HTH,
Pierre

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://wwww.mandrakestore.com

Reply via email to