I have a SRX that I am running in packet mode and am attempting some test configurations on it while I await my IP assignment from ARIN. The assigned subnet I have been given at the moment is a /29 - supposed to be a /27, but there was an error in the order so I am waiting for it to be corrected.
That being said, for testing I am trying to split my assigned /29 into two /30's to split across two interfaces, basically putting the SRX between the provider and my NAT router which is another device. My subnet is not routed to me over a PTP, rather the subnet assigned is directly connected and the first useable address is the provider gateway.
Lets assume I was assigned 10.0.0.176/29.
I have split it into 10.0.0.176/30 and 10.0.0.180/30
ge-0/0/1 {
description Provider_PTP;
unit 0 {
family inet {
address 10.0.0.178/30;
}
}
}
ge-0/0/2 {
description LAN_PTP
unit 0 {
family inet {
address 10.0.0.181/30;
routing-options {
}
}
static {
route 0.0.0.0/0 {
next-hop 10.0.0.177;
resolve;
I am able to ping the direct interfaces back and forth, but I have no outward reachability from the router which is assigned the 10.0.0.182 address to the internet.
Provide gateway is of course configured as 10.0.0.176/29 however as long as the addresses in there are reachable over the link it is on, it should get through the SRX to the 0/0/2 interface should it not?