Quantcast
Channel: SRX Services Gateway topics
Viewing all articles
Browse latest Browse all 3959

Creating a simple trunk interface

$
0
0

Hello

 

First time trying to create a trunk interface in srx router, did some googling and came up with config, but i think something is still missing since i cant ping the interface even from router itself.

 

Config:

 

security {

 policies {

	from-zone Vlan_203 to-zone X {
            policy Default {
                match {
                    source-address any;
                    destination-address any;
                    application any;
                }
                then {
                    permit;
                }
            }
        }
        from-zone X to-zone Vlan_203 {
            policy Default {
                match {
                    source-address any;
                    destination-address any;
                    application any;
                }
                then {
                    permit;
                }
            }
        }	


	}


 zones {
	security-zone Test {
            interfaces {
                xe-2/2/2.0 {
                    host-inbound-traffic {
                        system-services {
                            any-service;
                        }
                        protocols {
                            all;
                        }
                    }
                }
            }
        }
        security-zone Vlan_203 {
            interfaces {
                vlan.203 {
                    host-inbound-traffic {
                        system-services {
                            any-service;
                        }
                        protocols {
                            all;
                        }
                    }
                }
            }
        }
    }
 }


}

interfaces {
    xe-2/2/2 {
        unit 0 {
            family ethernet-switching {
                interface-mode trunk;
                vlan {
                    members Vlan_203;
                }
            }
        }
    }

    vlan {
        unit 203 {
            family inet {
                address 192.168.3.1/24;
            }
        }
    }
}

vlans {
    Vlan_203 {
        vlan-id 203;
        l3-interface irb.203;
    }
}

 

root@SRX> show vlans

Routing instance        VLAN name             Tag          Interfaces
default-switch          Vlan_203              203
                                                           xe-2/2/2.0*
default-switch          default               1


root@SRX> show interface terse
 vlan 203 is not listen in there


pinging 192.168.3.1 from router = no route to host


version: Model: srx5400, Junos: 17.3R2.10


Viewing all articles
Browse latest Browse all 3959

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>