1

Apparently the command for that is redistribute connected. Where do I input it? I tried it in the telnet interface, but it's not recognised.

Czarn
  • 25
  • 3

2 Answers2

1

Connect to ripd daemon

telnet localhost ripd

If still not working or doesn't recognize ripd try

telnet localhost 2602

enable

Then go in configuration mode

host# conf t

Then go into rip configuration

host# router rip

and run command

host#(conf-router) redistribute connected

Now press Ctrl+Z and save configuration

host# write

Regards

hallsa
  • 138
  • 4
Sacx
  • 2,581
  • 16
  • 13
  • `vtysh -c redistribute connected` => unknown command. And I'm using the ripd daemon, not bgpd. – Czarn Mar 17 '11 at 21:24
  • Fixed. see now! – Sacx Mar 17 '11 at 21:40
  • Sorry, you misundertood; I can login to the telnet interface just fine. I `enable` it, but then the redistribute command is not recognised (it's not `list`ed either). – Czarn Mar 17 '11 at 21:44
  • Did you forgot about configuration mode ? – Sacx Mar 17 '11 at 21:52
  • Still an unknown command in the config mode, still doesn't show up on the `list`. Also, doesn't this just save the settings to the config file? How would I put it there manually? Just putting `redistribute connected` raises an error when starting the daemon. – Czarn Mar 17 '11 at 22:03
  • What OS do you are running? What version of quagga ? – Sacx Mar 17 '11 at 22:09
  • Running Debian, Quagga 0.99.5. – Czarn Mar 17 '11 at 22:11
0

You could add it to your ripd configuration file which is in /etc/quaga/ripd.conf. By the way you should have ripd service enabled and started…

Drew
  • 123
  • 5