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

Configuring Logical Link Control on Interfaces

You must configure logical link control (LLC) on an interface to enable a DLSw connection. To configure LLC on an interface, include the following statements on the DLSw interface:

interfaces interface-name {
unit logical-unit-number {
family llc2 {
ack-max count;
ack-delay-time time;
idle-time time;
local-window count;
max-retry number;
p-bit-timeout time;
t1-time time;
t2-timeout time;
trej-time time;
}
}
}

For information on configuring LLC and interfaces, see the JUNOS Network Interfaces Configuration Guide.

Example: Configuring LLC Options on an Interface

Configure LLC options on an unnumbered interface:

[edit]
interfaces {
fe-0/0/0 {
unit 0 {
family inet;
address 10.10.10.2/24;
}
family llc2 {
ack-delay-time 3000;
ack-max 10;
idle-time 102;
local-window 15;
max-retry 20;
p-bit-timeout 100;
t1-time 101;
t2-time 101;
max-retry 5;
trej-time 4000;
}
}
}

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