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

Configuring Inter-PSD Forwarding on a PSD

To configure inter-PSD forwarding on a PSD:

  1. Use the xt-fpc/pic/slot statement at the [edit interfaces] hierarchy level to configure cross-connections with the other PSDs.
  2. Configure logical interfaces under the cross-connect interface using the unit logical-unit-number statement at the [edit interfaces xt-fpc/pic/slot] hierarchy level.

    The values for logical-unit-number must match values set in the Root System Domain (RSD) configuration.

  3. For each logical interface, include the following statements:
  4. Repeat this procedure for each PSD that you want to include in inter-PSD forwarding.

In the example illustrated in Figure 12, a cross-connect using a tunnel interface transports packets between the logical interfaces configured on each PSD.

Figure 12: Example: Inter-PSD Forwarding

Image g017291.gif

Table 17: Example: Inter-PSD Forwarding

PSD

Interfaces

PSD 5

xt-4/3/0.1
	10.0.0.2
2121:2121::2/64
xt-4/3/0.2
10.0.1.2

PSD 7

xt-3/3/0.1
	10.0.0.1
2121:2121::1/64
xt-3/3/0.2
10.1.1.2

PSD 3

xt-3/3/0.1
	10.0.0.1
2121:2121::1/64
xt-2/3/0.2
10.1.1.1

In this example, the [edit interfaces] hierarchy on PSD 5 is configured as follows:

interfaces {
        xt-4/3/0 {
            unit 1 {
                peer-psd psd7;
                peer-interface xt-3/3/0.1;
                encapsulation frame-relay;
                point-to-point;
                dlci 1;
                family inet {
                    address 10.0.0.2/32 {
                        destination 10.0.0.1;
                    }
                }
                family inet6 {
                    address 2121:2121::2/64;
                }
            }
            unit 2 {
                peer-psd psd3;
                peer-interface xt-2/3/0.1;
                encapsulation frame-relay;
                point-to-point;
                dlci 2;
                family inet {
                    address 10.0.1.2/32 {
                        destination 10.0.1.1;
                    }
                }
            }
        }
    }

In this example, the [edit interfaces] hierarchy on PSD 7 is configured as follows:

interfaces {
        xt-3/3/0 {
            unit 1 {
                peer-psd psd5;
                peer-interface xt-4/3/0.1;
                encapsulation frame-relay;
                point-to-point;
                dlci 1;
                family inet {
                    address 10.0.0.1/32 {
                        destination 10.0.0.2;
                    }
                }
                family inet6 {
                    address 2121:2121::1/64;
                }
            }
            unit 2 {
                peer-psd psd3;
                peer-interface xt-2/3/0.2;
                encapsulation frame-relay;
                point-to-point;
                dlci 2;
                family inet {
                    address 10.1.1.1/32 {
                        destination 10.1.1.2;
                    }
                }
            }
        }
    }

In this example, the [edit interfaces] hierarchy on PSD 3 is configured as follows:

 interfaces {
        xt-2/3/0 {
            unit 1 {
                peer-psd psd5;
                peer-interface xt-4/3/0.2;
                encapsulation frame-relay;
                point-to-point;
                dlci 1;
                family inet {
                    address 10.0.1.1/32 {
                        destination 10.0.1.2;
                    }
                }
            }
            unit 2 {
                peer-psd psd7;
                peer-interface xt-3/3/0.2;
                encapsulation frame-relay;
                point-to-point;
                dlci 2;
                family inet {
                    address 10.1.1.2/32 {
                        destination 10.1.1.1;
                    }
                }
            }
        }
    }

Related Topics


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