Connecting a Juniper router to a Cisco router

That is fair. Here is the Juniper config. I added security polices to try and allow everything through, I am connecting to this particular cisco router through int fe0/0/1.

root@Router# run show configuration

Last commit: 2017-03-17 14:26:12 UTC by root

version 12.1X46-D51; system { host-name Router; root-authentication { encrypted-password "$1$5chSs8zO$9Q.i9mOvUS8aVA89V3TGR."; ## SECRET-DATA } name-server { 208.67.222.222; 208.67.220.220; } services { ssh; telnet; xnm-clear-text; web-management { http { interface vlan.0; } https { system-generated-certificate; interface vlan.0; } }
dhcp { router { 192.168.1.1; } pool 192.168.1.0/24 { address-range low 192.168.1.2 high 192.168.1.254; } propagate-settings fe-0/0/0.0; } } syslog { archive size 100k files 3; user * { any emergency; } file messages { any critical; authorization info; } file interactive-commands { interactive-commands error; } }
max-configurations-on-flash 5; max-configuration-rollbacks 5; license { autoupdate { url https://ae1.juniper.net/junos/key_retrieval; } } } chassis { aggregated-devices { ethernet { device-count 5; } } } interfaces { fe-0/0/0 { unit 0 { family inet { address 10.10.0.1/30; } } }
fe-0/0/1 { speed 100m; link-mode full-duplex; unit 0 { family inet { address 192.168.0.1/30; } } } fe-0/0/2 { unit 0 { family ethernet-switching { vlan { members vlan-trust; } } } } fe-0/0/3 { unit 0 { family ethernet-switching { vlan { members vlan-trust; } } } } fe-0/0/4 { unit 0 { family ethernet-switching { vlan { members vlan-trust; } } } } fe-0/0/5 { unit 0 { family ethernet-switching { vlan { members vlan-trust; } } } } fe-0/0/6 {
unit 0 { family ethernet-switching { vlan { members vlan-trust; } } } } fe-0/0/7 { unit 0 { family ethernet-switching { vlan { members vlan-trust; } } } } vlan { unit 0 { family inet { address 192.168.1.1/24; } }
} } routing-options { static { route 192.168.0.0/30 next-hop 192.168.0.2; } } protocols { stp; } security { screen { ids-option untrust-screen { icmp { ping-death; } ip { source-route-option; tear-drop; } tcp { syn-flood { alarm-threshold 1024; attack-threshold 200; source-threshold 1024; destination-threshold 2048; timeout 20; } land; } } } nat { source { rule-set trust-to-untrust { from zone trust; to zone untrust; rule source-nat-rule { match { source-address 0.0.0.0/0; } then { source-nat { interface; } }
} } } } policies { from-zone trust to-zone untrust { policy trust-to-untrust { match { source-address any; destination-address any; application any; } then { permit; } } } from-zone trust to-zone vpn { policy vpn_egress { match { source-address Josiah; destination-address any; application any;
} then { permit; } } } from-zone vpn to-zone trust { policy vpn_ingress { match { source-address any; destination-address any; application any; } then { permit; } } } } zones { security-zone trust { address-book { address Josiah 192.168.0.0/30; } host-inbound-traffic { system-services { all; } protocols { all; } } interfaces { vlan.0; } } security-zone untrust { screen untrust-screen; interfaces { fe-0/0/0.0 { host-inbound-traffic { system-services { dhcp; tftp; } }
} } } security-zone vpn { address-book { address Josiah 192.168.0.0/30; } } } } vlans { vlan-trust { vlan-id 3; l3-interface vlan.0; } }

[edit]

/r/networking Thread Parent