Hi,
I have created a tunnel from a remote server to a server in our network and while the tunnel looks good on juniper, traffic is not flowing through.
Details:
On the remote Linux server, I created a standard GRE tunnel and routed some IPs. This tunnel works and I can see traffic coming in/passing through.
The GRE end point for our internal server was configured on Juniper.
So our server's public IP is 38.xx.xx.4 and the remote server is 94.xx.xx.10. My configuration on juniper is as follows:
gr-0/0/0 {
unit 0 {
description gretunnel;
tunnel {
source 38.xx.xx.4;
destination 94.xx.xx.10;
}
family inet {
filter {
input tunnel-inbound;
}
address 10.0.0.5/32;
}
}
}
When I do, "show interfaces gr-0/0/0.0 detail", I get no traffic coming in:
Traffic statistics:
Input bytes : 0
Output bytes : 0
Input packets: 0
Output packets: 0
Local statistics:
Input bytes : 0
Output bytes : 0
Input packets: 0
Output packets: 0
How can I make this work? The remote server end is configured fine. This used to work before.
If I instead use our juniper (38.xx.xx.111) as the tunnel endpoint, it works:
gr-0/0/0 {
unit 0 {
description gretunnel;
tunnel {
source 38.xx.xx.111;
destination 94.xx.xx.10;
}
family inet {
filter {
input tunnel-inbound;
}
address 10.0.0.5/32;
}
}
}
Now "show interfaces gr-0/0/0.0 detail":
Traffic statistics:
Input bytes : 13200232
Output bytes : 192
Input packets: 235670
Output packets: 2
Local statistics:
Input bytes : 80
Output bytes : 192
Input packets: 1
Output packets: 2
Any help you can provide will be much appreciated. I would like tunnel endpoints configured on the juniper on behalf of our servers to work.
Thanks!:)
CM
#GRETunnel#endpoint#Tunnel#SRX650#routing