12-23-2019 09:41 PM
Hello All,
I have GPON router which has a static IP Address, which is connected to CISCO 881 router to perform GRE Tunnel.
Is it possible ? If yes then how how ?
12-23-2019 11:26 PM
Hello,
which GPON router model/brand do you have ?
12-24-2019 12:00 AM
Huawei
12-24-2019 12:30 AM
Hello,
I don't know if your HG8245Q has a command line, but check if it does, and if it accepts the commands similar to the ones below. This would build a GRE tunnel on the Huawei side.
system-viewg>
[Huawei-Router1] interface Tunnel 1/1/1
[Huawei-Router1-Tunnel1/1/1] ip address 172.16.1.1 24
[Huawei-Router1-Tunnel1/1/1] tunnel-protocol gre
[Huawei-Router1-Tunnel1/1/1] source 100.100.100.1 24
[Huawei-Router1-Tunnel1/1/1] destination 200.200.200.1 24
[Huawei-Router1-Tunnel1/1/1] quit
12-24-2019 11:03 AM
12-25-2019 12:10 AM
Actually I am sharing internet from my neighbours using cable which is connected to internet DSL modem. At my house i have 1941 cisco router which I will connecT to G 0/0. The point is i am getting DHCP assigned private address from the DSL router 192.168.1.10.
12-25-2019 12:50 AM
Hello,
if sharing the Internet connection with your neighbor (and hopefully your neighbor knows you are doing it), you need to configure your router with something like the below.
ip dhcp excluded-address 192.168.2.1
!
ip dhcp pool LAN
network 192.168.2.0 255.255.255.0
default-router 192.168.2.1
dns-server 8.8.8.8 8.8.4.4
!
interface FastEthernet0/0
description Uplink to DSL
ip address dhcp
ip nat outside
!
interface FastEthernet0/1
description LAN Interface
ip address 192.168.2.1 255.255.255.0
ip nat inside
!
ip nat inside source list 1 interface FastEthernet0/0 overload
!
ip route 0.0.0.0 0.0.0.0 FastEthernet0/0 dhcp
!
access-list 1 permit 192.168.2.0 0.0.0.255
12-25-2019 12:53 AM
i did all this and its working fine. Now the second phase is GRE tunnel to be implemented.
12-25-2019 03:36 AM
Hello,
do you have full access to the other router ? Does the router take the commands mentioned above (earlier in this thread) ?
12-25-2019 04:28 AM
The Above mentioned solution is GRE Tunnel from Huawei to Cisco.
Since the GRE commands are running over Huawei.
My situation is below mentioned
Actually I am sharing internet from my neighbours using cable which is connected to internet DSL modem. At my house i have 1941 cisco router which I will connecT to G 0/0. The point is i am getting DHCP assigned private address from the DSL router 192.168.1.10.
12-25-2019 04:47 AM
Hello,
I am not following. What do you want to accomplish ? A GRE tunnel from where to where ?
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide