Yes of course
# show interfaces vlan unit 3
family inet {
filter {
input lan-filter;
}
address 192.168.0.78/24;
}
# show firewall family inet filter lan-filter
term to-ftd {
from {
source-address {
192.168.0.0/24;
}
}
then {
routing-instance to-ftd-route-table;
}
}
term default {
then accept;
}
# show interfaces vlan unit 401
family inet {
address 10.16.1.1/30;
}
# show routing-instances
to-ftd-route-table {
instance-type forwarding;
routing-options {
static {
route 0.0.0.0/0 next-hop 10.16.1.2;
}
}
}
# show routing-options
interface-routes {
rib-group inet to-ftd-fbf-group;
}
static {
route 0.0.0.0/0 next-hop 2.2.2.2;
}
rib-groups {
to-ftd-fbf-group {
import-rib [ inet.0 to-ftd-route-table.inet.0 ms-exchange-route-table.inet.0 ];
}
}
# show route
inet.0: 84 destinations, 86 routes (83 active, 0 holddown, 1 hidden)
+ = Active Route, - = Last Active, * = Both
0.0.0.0/0 *[Static/5] 8w3d 05:02:20
> to 2.2.2.2 via ge-0/0/15.0
10.16.1.0/30 *[Direct/0] 5w0d 20:02:39
> via vlan.401
10.16.1.1/32 *[Local/0] 25w4d 02:38:27
Local via vlan.401
192.168.0.0/24 *[Direct/0] 5w0d 20:02:39
> via vlan.3
192.168.0.78/32 *[Local/0] 35w3d 20:57:55
Local via vlan.3
...
...
to-ftd-route-table.inet.0: 76 destinations, 78 routes (75 active, 0 holddown, 1 hidden)
+ = Active Route, - = Last Active, * = Both
0.0.0.0/0 *[Static/5] 5w0d 20:02:38
> to 10.16.1.2 via vlan.401
10.16.1.0/30 *[Direct/0] 5w0d 20:02:39
> via vlan.401
10.16.1.1/32 *[Local/0] 5w0d 20:02:39
Local via vlan.401
192.168.0.0/24 *[Direct/0] 5w0d 20:02:39
> via vlan.3
192.168.0.78/32 *[Local/0] 5w0d 20:02:39
Local via vlan.3
...
...
# show security zones security-zone EST
host-inbound-traffic {
system-services {
all;
}
protocols {
all;
}
}
interfaces {
…
vlan.3;
vlan.401;
…
}