[Contents] [Prev] [Next] [Index] [Report an Error]

Example: Creating Routing Tables

Create the IPv4 routing table inet.4 and add a static route to it:

[edit]
routing-options {
rib inet.4 {
static {
route 140.122.0.0/16 next-hop 192.168.0.10;
}
}
}

Configure the primary IPv6 routing table inet6.0 and add a static route to it:

[edit routing-options]
rib inet6.0 {
static {
route 8:1::1/128 next-hop 8:3::1;
}
}

[Contents] [Prev] [Next] [Index] [Report an Error]