Configure a routing policy to accept CLNS routes:
- policy-options {
-
- policy-statement dist-bgp {
-
- from {
- protocol bgp;
- family iso;
- }
- then accept;
- }
-
- policy-statement dist-static {
-
- from {
- protocol static;
- family iso;
- }
- then accept;
- }
- }
Configure CLNS for IS-IS:
- protocols {
-
- isis {
-
- traceoptions {
- file isis size 5m world-readable;
- flag error;
- }
- export dist-static;
- no-ipv6-routing;
- no-ipv4-routing;
- clns-routing;
- interface fe-0/0/1.0;
- interface t1-0/2/1.0;
-
- interface fxp0.0 {
- disable;
- }
- interface lo0.0;
- }
- }
Configure a routing instance that supports CLNS routes:
- routing-instances {
-
- aaaa {
- instance-type vrf;
- interface lo0.1;
- interface t1-3/0/0.0;
- interface fe-5/0/1.0;
- route-distinguisher 10.245.245.1:1;
- vrf-target target:11111:1;
-
- protocols {
-
- isis {
- export dist-bgp;
- no-ipv4-routing;
- no-ipv6-routing;
- clns-routing;
- interface all;
- }
- }
- }
- }