Hi everybody,
some people asked me for the static-routes-program. Due to the change of my
workingplace, I forgot to include a sample config file! I apologize for this
and send it this way.
Hope, this is useful for you.
Jörn
###################################################################
#
# STATIC ROUTES FOR MPLS
#
#
###################################################################
#
# default definitions should be placed here
#
DEFAULT_BEGIN
key gen
ipversion ipv4
DEFAULT_END
#
# definition of incoming labels
#
# using the form:
# label interfacees
#INCOMING_BEGIN
# this one is only for testing
#1024 eth2
#1022 eth1
#INCOMING_END
#
# definition of outgoing labels with tunnel
#
# using the form:
# tunnel-name label interface local address next hop
#OUTGOING_BEGIN
#mpls0 1024 eth0 192.168.4.204 192.168.4.203
#OUTGOING_END
#
# definition for a mpls-switching router
#
# using the form:
# from interfaces from label to interface to label to local addr to
next hop
SWITCHING_BEGIN
eth2 1024 eth0 1023 192.168.4.203 192.168.4.203
eth0 1022 eth2 1021 192.168.3.204 192.168.3.201
SWITCHING_END
|