Hello List,<br><br>I am new to XORP and having difficulties to get XORP to distribute connected routes into OSPF. For example, after I add an address to eth1:<br> $ ip addr add <a href="http://8.65.1.10/32">8.65.1.10/32
</a> dev eth1<br><br>I'd like the connected route <a href="http://8.65.1.10/32">8.65.1.10/32</a> be distributed by the OSPF process. <br><br>After reading through the XORP manual I have the latest 1.4 release running on my Linux box. The OSPF process is receiving routes correctly from the upstream router. But the route export/distribution does not work as I had hoped. When I add or delete ip addresses the XORP process does not do OSPF LS Update.
<br><br>My question is: does XORP currently support this kind of route distribution? And if yes how to make this work?<br><br>Any help is very much appreciated!<br><br>Thanks,<br><br>-Donghai Ma<br><br>PS. <br><br>Here is my configuration:
<br><br>-------------------------------------------- xorp config file starts --------------------------------------------<br>/* $XORP: xorp/rtrmgr/config.boot 1.46 2007/03/12 10:16:05 atanu Exp $ */<br>interfaces {<br> restore-original-config-on-shutdown: false
<br> interface eth1 {<br> description: "eth1"<br> disable: false<br> /* default-system-config */<br> vif eth1 {<br> disable: false<br> address <a href="http://5.8.27.2">
5.8.27.2</a> {<br> prefix-length: 24<br> broadcast: <a href="http://5.8.27.255">5.8.27.255</a><br> disable: false<br> }<br> }<br> }<br>}<br><br>fea {<br> unicast-forwarding4 {
<br> disable: false<br> forwarding-entries {<br> retain-on-startup: false<br> retain-on-shutdown: false<br> }<br> }<br>}<br><br>policy {<br> /* Describe connected routes for redistribution */
<br> policy-statement POLICY_CONNECTED {<br> term 1 {<br> from {<br> protocol: "connected"<br> }<br> then {<br> trace 3<br> accept
<br> }<br> }<br> }<br>}<br><br>protocols {<br> ospf4 {<br> router-id: <a href="http://5.8.27.2">5.8.27.2</a><br><br> area <a href="http://0.0.0.0">0.0.0.0</a> {<br> area-type: "normal"
<br> interface eth1 {<br> /* link-type: "broadcast" */<br> vif eth1 {<br> address <a href="http://5.8.27.2">5.8.27.2</a> {<br> }<br> }
<br> }<br> }<br><br> export: "POLICY_CONNECTED"<br> }<br>}<br><br>-------------------------------------------- xorp config file ends --------------------------------------------<br><br>