Hi everyone,
I am new to Juniper and what I am trying to achieve is combination of multiple things which I haven't done before.
Goal: Run of ge-0/0/0 all the time and routing via 4G when link down or destination IP (monitoring) not available.
So, Ihave this SRX 320 with an LTE card. The card gets an WAN IP provisioned by a radius in /32 format. This means there is no next hop or default gateway.
PROBLEM 1:
cl-2/0/0 {
dialer-options {
pool 1;
}
act-sim 1;
cellular-options {
sim 1 {
select-profile profile-id 1;
radio-access automatic;
gateway x.x.x.x/32;
This article says that a gateway is needed for /32 IPs. However, when configured as per the config above, I get these results:
Logical interface dl0.0 (Index 79) (SNMP ifIndex 502)
Flags: Up Point-To-Point SNMP-Traps 0x0 Encapsulation: ENET2
Dialer:
State: Active, Dial pool: 1
Dial strings: 0413895052
Subordinate interfaces: cl-2/0/0 (Index 151)
Activation delay: 0, Deactivation delay: 0
Initial route check delay: 120
Redial delay: 3
Callback wait period: 5
Load threshold: 0, Load interval: 60
Bandwidth: 300mbps
Input packets : 72
Output packets: 6
Security: Zone: Null
Protocol inet, MTU: 1446
Flags: Sendbcast-pkt-to-re, Negotiate-Address
Addresses, Flags: Kernel Is-Preferred Is-Primary
Destination: x.x.x.96/28, Local: x.x.x.104,
Broadcast: x.x.x.111
Aand this from show route:
inet.0: 9 destinations, 10 routes (9 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both
0.0.0.0/0 *[Static/1] 00:14:59
> to 192.168.100.254 via ge-0/0/0.0
[Access-internal/12] 00:00:07, metric2 0> to x.x.x.105 via dl0.0
So, since the interface gets /32, it means there is no IP for GW, so option to set "set interfaces cl-interface cellular-options sim sim-slot gateway ip-address/mask" on the cellular won't work. I tried set up another hop on it for test, but it did not show anywhere in the routing table.
PROBLEM 2
Even when pushing /32 to the interface, you can see in one of the config examples above it gets /28. Completely for no reason.
I tried going with routing monitor hoping I can tell it which interface to use whn going out, but this option is not even available (or at leaast I did not find it). Cisco has option to set interface + next hop IP even on non point to point interfaces.
I am not sure whether I am missing something or what. Any advice will be appraciated. Thanks in advance.