Options

JUNOS - Interpreting Filter CLI / Any good books/labs for JUNOS?

klampkinklampkin Member Posts: 44 ■■□□□□□□□□
Hello all:

Question 1 of 2: Interpreting Filter CLI

term TERM1 {
from {
prefix-list {
PREFIX1;
}
protocol TCP;
port [ 80 ];
}
then accept;
}


Does that rule mean A, B, C, or D?
A: source-address:PREFIX1, destination:ANY, protocol: TCP, source-or-destination-port:80
B: source-address:PREFIX1, destination:ANY, protocol: TCP, destination-port:80
C: source-address:PREFIX1, destination:ANY, protocol: TCP, source-port:80
D: something else entirely, please explain


Question 2 of 2: Any good books/labs for JUNOS? What resources are recommended for someone trying to start out in the land of JUNOS?

Thanks!
LinkedIn: http://www.linkedin.com/in/kellyelampkin (Please connect :D)

Comments

  • Options
    LuieLuie Member Posts: 33 ■■□□□□□□□□
    (A) - the match condition of 'port' will hit on either the source or destination port. That condition is only available on MX and SRX though. On EX and QFX, you have to specify 'source-port' or 'destination-port'.

    If you're starting out, try their Day One library (Day One Library). You'll probably want to look closely at 'Junos for IOS Engineers'. For more in-depth books, O'Reilly has books on Routing, Switching, and most of the model platforms. This is the closest Juniper version of Cisco Press, but there is much less material compared to Cisco.
Sign In or Register to comment.