[Xorp-hackers] question about running XORP-0.5 on Linux

Atanu Ghosh atanu@ICSI.Berkeley.EDU
Wed, 12 Nov 2003 11:47:59 -0800


    Liang> I comment out the peer section, the rtrmgr process aborted
    Liang> when it was processing fea:

    Liang> [FATAL xorp_rtrmgr:2116 RTRMGR +975 task.cc find_task]
    Liang> Assertion (_module_commands.find(modname) !=
    Liang> _module_commands.end())

I knew I should have tried it before suggesting this course of
action:-(.

The config below works for me with a dummy peer entry. There is a
comment by every entry you need to change.

      Atanu.

----------------------------------------
interfaces {
  interface rl0 {			/* Your interface name */
    description: "control interface"
    vif rl0 {				/* Your interface name */
      address 192.150.187.108 {		/* Your interface address */
        prefix-length: 24		/* Your prefix length */
        broadcast: 192.150.187.255	/* Your broadcast address */
      }
    }
  }
}

protocols {
  bgp {
    bgp-id: 192.150.187.108		/* Your interface address */
    local-as: 65002
    peer 10.10.10.1 {
      local-ip: 192.150.187.108		/* Your interface address */
      peer-ip: 10.10.10.1
      as: 65000
      holdtime: 90
      next-hop: 10.10.10.2
    }
  }
}
----------------------------------------