Community discussions

MikroTik App
 
conrad254
just joined
Topic Author
Posts: 9
Joined: Tue Oct 20, 2020 6:28 pm

PPOE access LAN devices

Wed Oct 21, 2020 9:49 am

i have over 300 clients so i was using static ip before to my clients and I used to access their routers remotely so i recently shift to PPOE and now i can't access client routers but the can get internet connection i have 2 WAN

WAN1 for business clients ip LAN 73.16.0.0/24
WAN2 for home clients ip LAN 173.16.0.024

my ppoe ranges from the above ips i cant even ping clients router any work around on this i can share my configs in anyone think he might help please
Last edited by conrad254 on Thu Oct 22, 2020 5:58 am, edited 1 time in total.
 
User avatar
sindy
Forum Guru
Forum Guru
Posts: 10889
Joined: Mon Dec 04, 2017 9:19 pm

Re: PPOE access LAN devices

Wed Oct 21, 2020 10:23 am

My guess would be that you haven't reflected the change from previous IP on ether1 to new IP on PPPoE via ether1 in the firewall. As ether1 is not an IP interface any more, the IP firewall cannot see any pacpets coming in via ether1, and the pppoe-out1 is not added to the interface list WAN.

If this is not a sufficient hint, yes, post the complete export of client router configuration.
 
conrad254
just joined
Topic Author
Posts: 9
Joined: Tue Oct 20, 2020 6:28 pm

Re: PPOE access LAN devices

Wed Oct 21, 2020 12:56 pm

here are my configs i dont know if they are wrong what I want to archive is

to have

2 WANS

business client traffic to be routed on WAN1 and home WAN2
export hide-sensitive 
# oct/20/2020 13:25:27 by RouterOS 6.47
# software id = XC7X-FSRH
#
# model = RB4011iGS+
# serial number = D4490C1320EA
/interface ethernet
set [ find default-name=ether1 ] name="ETH01-SHARED HOME LINK"
set [ find default-name=ether2 ] name="ETH02-DEDICATED OFFICE LINK"
set [ find default-name=ether3 ] name=ETH03
set [ find default-name=ether4 ] name="ETH04-HOTSPOT LINKT OUT"
set [ find default-name=ether5 ] name="ETH05- HOME LINK OUT"
set [ find default-name=ether6 ] name="ETH06-OFFICE LINK OUT"
set [ find default-name=ether7 ] name="ETH07-HOTSPOT LINKT OUT"
/interface ethernet switch port
set 0 default-vlan-id=0
set 1 default-vlan-id=0
set 2 default-vlan-id=0
set 3 default-vlan-id=0
set 4 default-vlan-id=0
set 5 default-vlan-id=0
set 6 default-vlan-id=0
set 7 default-vlan-id=0
set 8 default-vlan-id=0
set 9 default-vlan-id=0
set 10 default-vlan-id=0
set 11 default-vlan-id=0
/interface list
add name="Skyivy plaza"
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip hotspot user profile
set [ find default=yes ] open-status-page=http-login transparent-proxy=yes
/ip pool
add name="ppoe home" ranges=73.16.0.10-73.16.0.254
add name="ppoe office" ranges=173.16.0.10-173.16.0.254
add name=hotspot-pool ranges=10.0.0.2-10.0.0.254
add name=dhcp_pool8 ranges=10.0.0.2-10.0.0.254
add name=dhcp_pool9 ranges=10.0.0.2-10.0.0.254
/ip dhcp-server
add address-pool=dhcp_pool9 disabled=no interface="ETH07-HOTSPOT LINKT OUT" name=dhcp1
/queue simple
add name="PPOE Connection" target=73.16.0.0/24
/ppp profile
add dns-server=8.8.8.8,9.9.9.9 insert-queue-before="PPOE Connection" local-address=20.0.0.150 name="2Mbps home package" only-one=\
    yes rate-limit=1M/2M remote-address="ppoe home" use-encryption=yes
add insert-queue-before="PPOE Connection" local-address=80.0.0.150 name="8Mbps home package" only-one=yes rate-limit=2M/8M \
    remote-address="ppoe home" use-encryption=yes
/ip neighbor discovery-settings
set discover-interface-list=none
/interface pppoe-server server
add authentication=pap,chap disabled=no interface="ETH05- HOME LINK OUT" keepalive-timeout=60 max-mru=1492 max-mtu=1492 mrru=1500 \
    one-session-per-host=yes service-name="HOME "
add authentication=pap,chap disabled=no interface="ETH06-OFFICE LINK OUT" keepalive-timeout=60 max-mru=1492 max-mtu=1492 \
    service-name=OFFICE
/ip address
add address=10.0.0.1/24 comment=hotspot interface="ETH07-HOTSPOT LINKT OUT" network=10.0.0.0
add address=73.16.0.1/24 comment="home link out" interface="ETH05- HOME LINK OUT" network=73.16.0.0
add address=173.16.0.1 comment="Office link out" interface="ETH06-OFFICE LINK OUT" network=173.16.0.1
/ip dhcp-client
add add-default-route=no disabled=no interface="ETH01-SHARED HOME LINK"
add add-default-route=no disabled=no interface="ETH02-DEDICATED OFFICE LINK"
/ip dhcp-server network
add address=10.0.0.0/24 dns-server=8.8.8.8,9.9.9.9 gateway=10.0.0.1
/ip dns
set allow-remote-requests=yes servers=8.8.8.8,9.9.9.9
/ip firewall filter
add action=passthrough chain=unused-hs-chain comment="place hotspot rules here" disabled=yes
/ip firewall mangle
add action=route chain=prerouting dst-address-type=!local passthrough=yes route-dst=174.168.99.1 src-address=173.16.0.0/24
add action=route chain=prerouting dst-address-type=!local passthrough=yes route-dst=174.168.88.1 src-address=10.0.0.0/24
add action=route chain=prerouting dst-address-type=!local passthrough=yes route-dst=174.168.88.1 src-address=73.16.0.0/24
/ip firewall nat
add action=passthrough chain=unused-hs-chain comment="place hotspot rules here" disabled=yes
add action=masquerade chain=srcnat src-address=10.0.0.0/24
add action=masquerade chain=srcnat src-address=73.16.0.0/24
add action=masquerade chain=srcnat src-address=173.16.0.0/24
add action=masquerade chain=srcnat comment="masquerade hotspot network" src-address=10.0.0.0/24
/ip route rule
add action=lookup-only-in-table dst-address=173.16.0.0/24 table=main
/ip service
set www-ssl disabled=no
/ppp profile
add dns-server=8.8.8.8,9.9.9.9 insert-queue-before=bottom interface-list="Skyivy plaza" local-address=20.0.0.150 name=\
    "2Mbps Office package" only-one=yes queue-type=default-small rate-limit=2M/2M remote-address="ppoe office" use-encryption=yes
add dns-server=8.8.8.8,8.8.4.4 insert-queue-before=bottom local-address=30.0.0.150 name="3Mbps Office package" only-one=yes \
    queue-type=default-small rate-limit=1M/3M remote-address="ppoe office" use-encryption=yes use-ipv6=default
add dns-server=5.11.11.10,8.8.8.8 insert-queue-before=bottom local-address=40.0.0.150 name="4Mbps Ofiice package" only-one=yes \
    queue-type=default-small rate-limit=1M/4M remote-address="ppoe office" use-encryption=yes
add dns-server=5.11.11.10,8.8.8.8 insert-queue-before=bottom local-address=40.0.0.150 name="4Mbps home package" only-one=yes \
    queue-type=default-small rate-limit=1M/4M remote-address="ppoe home" use-encryption=yes
add change-tcp-mss=yes dns-server=5.11.11.10,8.8.8.8 insert-queue-before=bottom local-address=50.0.0.150 name=\
    "5Mbps Office package" only-one=yes queue-type=default-small rate-limit=1M/5M remote-address="ppoe office" use-encryption=yes
add dns-server=5.11.11.10,8.8.8.8 insert-queue-before=bottom local-address=50.0.0.150 name="5Mbps home package" only-one=yes \
    queue-type=default-small rate-limit=1M/5M remote-address="ppoe home" use-encryption=yes
add dns-server=5.11.11.10,8.8.8.8 insert-queue-before=bottom local-address=60.0.0.150 name="6Mbps Office package " only-one=yes \
    queue-type=default-small rate-limit=1M/6M remote-address="ppoe office" use-encryption=yes
add dns-server=5.11.11.10,8.8.8.8 insert-queue-before=bottom local-address=60.0.0.150 name="6Mbps home package" only-one=yes \
    queue-type=default-small rate-limit=1M/6M remote-address="ppoe home" use-encryption=yes
add dns-server=5.11.11.10,8.8.8.8 insert-queue-before=bottom local-address=70.0.0.150 name="7Mbps Office package" only-one=yes \
    queue-type=default-small rate-limit=1M/7M remote-address="ppoe office" use-encryption=yes
add dns-server=5.11.11.10,8.8.8.8 insert-queue-before=bottom local-address=70.0.0.150 name="7Mbps home package" only-one=yes \
    queue-type=default-small rate-limit=1M/7M remote-address="ppoe home" use-encryption=yes
add dns-server=8.8.8.8,9.9.9.9 insert-queue-before=bottom local-address=80.0.0.150 name="8Mbps Office package" only-one=yes \
    queue-type=default-small rate-limit=2M/8M remote-address="ppoe office" use-encryption=yes
add dns-server=8.8.8.8,9.9.9.9 insert-queue-before=*187 name="20Mbps home package" only-one=yes rate-limit=20M/20M remote-address=\
    "ppoe home" use-encryption=yes use-ipv6=default
add dns-server=8.8.8.8,9.9.9.9 insert-queue-before=bottom local-address=20.0.0.150 name="3Mbps Home Package" only-one=yes \
    queue-type=default-small rate-limit=1M/3M remote-address="ppoe home" use-encryption=yes
add dns-server=8.8.8.8,8.8.4.4 insert-queue-before=bottom local-address=50.0.0.150 name="5Mbps Sama Source " only-one=yes \
    queue-type=default-small rate-limit=1M/5M remote-address="ppoe office" use-encryption=yes use-ipv6=default
/ppp secret
add comment="Skyivy plaza room d2" name=test profile="2Mbps Office package" service=pppoe
add caller-id=E8:65:D4:B7:2D:90 comment="AMANI 4 Plaza [Expiries 24]" name="Abubakar Botul" profile="5Mbps Office package" service=\
    pppoe
add comment="KWARE  Area [Expiries 30]" name="Benard Okumu" profile="6Mbps Office package " service=pppoe
add comment="Chairman's Area [Expiries 31]" name="Benford Munyoki" profile="8Mbps home package" service=pppoe
add caller-id=E8:65:D4:C9:77:80 comment="Ibaldo Ippolita Area [Expires 22]" name="Agneta Rebbeca" profile="8Mbps Office package" \
    remote-address=173.16.0.23 service=pppoe
add comment="Chairman's Area [Expiries 27]" name="Moses Gitau" profile="5Mbps Office package" service=pppoe
add comment="Angaza Flats [Expiries 02]" name="Lucy Warukira" profile="5Mbps Office package" service=pppoe
add comment="Angaza Flats Room 602 [Expiries 20]" name="Ramadhan Rajab" profile="5Mbps Office package" service=pppoe
add comment="Angaza Flats Room B11 [Expiries 5]" name="Samuel Odour" profile="2Mbps home package" service=pppoe
add comment="Skyivy Plaza [Expiries 15]" name=Caretakersky profile="2Mbps home package" service=pppoe
add caller-id=74:83:C2:5E:DD:25 comment="Stage Mpya Area [Expiries 15]" name="Benard Komu" profile="2Mbps home package" service=\
    pppoe
add comment="Kware Area Betin [Epiries 05]" name="Carolyn Nyaga" profile="8Mbps Office package" service=pppoe
add comment="Astone Villa Area [Epiries 07]" name="Collins Kisivuli" profile="5Mbps Office package" service=pppoe
add comment="Stage Mpya Area [Epiries 14]" name="Cynthia Awino" profile="5Mbps home package" service=pppoe
add comment="Pipeline Stage Area [Expiries 22]" name="Gitau Julia" profile="5Mbps Office package" service=pppoe
add comment="Astone Villa Area [Expiries 24]" name="Gladys Ndoti" profile="5Mbps Office package" service=pppoe
add comment="Shelter 5 Plaza  [Expiries 28]" name="Jemimah Lelu" profile="5Mbps Office package" service=pppoe
add comment="Transsami Area [Expiries 22" name="Joseph Mutuku" profile="5Mbps Office package" service=pppoe
add comment="Kware Area Betin [Expiries 15]" name="Kenty Gin" profile="2Mbps home package" service=pppoe
add comment="Chairman's Area [Expiries 02]" name="Kofeli Gabriel" profile="5Mbps Office package" service=pppoe
add comment="Shelter 5 Bypass [Expired 29]" name="Ruth Muthoni" profile="5Mbps Office package" service=pppoe
add comment="Kware Area  [Expiries 06]" name="Sharon Kavugure" profile="5Mbps Office package" service=pppoe
add comment="Skyivy Plaza A10 [Expiries 19]" name="Nickson Kiprop" profile="5Mbps Office package" service=pppoe
add comment="Skyivy Plaza D14 [Expiries 18]" name="Sharon Adhiambo" profile="5Mbps Office package" service=pppoe
add comment="Skyivy Plaza [Expiries 14]" name="Frank Githinji" profile="5Mbps Office package" service=pppoe
add comment="Skyivy Plaza [Expiries 04]" name="Dumbo Ngombe" profile="5Mbps Office package" service=pppoe
add comment="Skyivy Plaza [Expiries 14]" name="Bonny Chula" profile="5Mbps Office package" service=pppoe
add comment="Skyivy Plaza [Expiries 22]" name=Winsalome profile="5Mbps Office package" service=pppoe
add comment="Skyivy Plaza [Expiries 04]" name=Luka profile="2Mbps home package" service=pppoe
add comment="Skyivy Plaza [Expiries 05]" name="Caroline Nyiva" profile="5Mbps Office package" service=pppoe
add comment="Skyivy Plaza [Expiries 21]" name="Ramadhan Issa" profile="5Mbps Office package" service=pppoe
add comment="Skyivy Plaza [Expiries 23]" name="James Ndungu" profile="5Mbps Office package" service=pppoe
add comment="Skyivy Plaza [Expiries 25]" name="Frank Indoka" profile="5Mbps Office package" service=pppoe
add comment="Skyivy Plaza [Expxpiries 28]" name="Ali Fauz" profile="5Mbps Office package" service=pppoe
add comment="Skyivy Plaza [Expiries 20]" name="Tina Nyabukora" profile="5Mbps Office package" service=pppoe
add comment="Chairman's Area [Expiries 03]" name="Stephen Mutemi" profile="5Mbps Office package" service=pppoe
add comment="T1 PLaza [Expiries 22]" name="Dennis Mutai" profile="5Mbps Office package" service=pppoe
add comment="Tassia Area [Expiries 21]" name="Upholsery Company" profile="5Mbps Office package" service=pppoe
add comment="Kware Area [Expiries 10] " name="Victor Hamisi" profile="5Mbps Office package" service=pppoe
add comment="PCA Area [Expiries 28]" name="Vincent Were" profile="5Mbps Office package" service=pppoe
add comment="Chairman's Area [Expiries 19]" name="Weldon Ongaki" profile="5Mbps Office package" service=pppoe
add comment="Angaza Plaza [Expiries 21]" name="Khamisi Said" profile="5Mbps Office package" service=pppoe
add comment="S1 Flats [Expiries 10]" name="Samuel Muitereri" profile="5Mbps home package" remote-address=73.16.0.65 service=pppoe
add comment="Stage Mpya Area [Expiries 14]" name="Blair Cyber" profile="5Mbps home package" service=pppoe
add comment="Skyivy Plaza [Expiries 10]" name="Walter Salija" profile="3Mbps Office package" service=pppoe
add comment="Kware Area [Expiries 15]" name="Fast Speed Cyber" profile="5Mbps home package" service=pppoe
add comment="Njenga Area [Expiries 15]" name=Fidel profile="6Mbps home package" service=pppoe
add comment="Stage Mpya Area [Expiries 15]" name="G to GO hotel" profile="3Mbps Home Package" service=pppoe
add comment="Ibado ippolita Area [Epiries 27]" name="Ibaldo Ippolita Heath Care" profile="6Mbps home package" service=pppoe
add comment="Transsami Area [Expiries 8]" name="Isaac Mauya" profile="2Mbps home package" service=pppoe
add comment="Shelter 5 [Expiries 10]" name="Jastine Otwoma" profile="4Mbps home package" service=pppoe
add comment="Stage Mpya Area [Expiries 5]" name="Linet Cyber" profile="7Mbps home package" service=pppoe
add comment="Njenga Area [Expiries 05]" name="Mad Plate Cyber" profile="5Mbps home package" service=pppoe
add comment="Embakasi Girls Area [Expiries 10]" name="Mjukuu Cyber" profile="5Mbps home package" service=pppoe
add comment="Njenga Area [Expiries 05]" name="Pcaizien Cyber" profile="3Mbps Home Package" service=pppoe
add comment="Stage Mpya Area [Expiries 15]" name="Pcaizien Home" profile="2Mbps home package" service=pppoe
add comment="Skyivy Plaza [Expiries 29]" name="jacinta muthoni" profile="2Mbps home package" service=pppoe
add comment="E05 Flats [Expiries 08]" name="Vincent Mbatha1" profile="5Mbps home package" service=pppoe
add comment="Embakasi Girls Area [Expiries 10]" name="Jared Ombui" profile="4Mbps home package" service=pppoe
add name="lenson Nyakora" profile="6Mbps home package" service=pppoe
add comment="Dan building[Expiries  28]" name="wycliff Dan building" profile="2Mbps home package" service=pppoe
add name=713 profile="2Mbps Office package" service=pppoe
add comment="S1 Flats [Expiries 31]" name="William Ogwang" profile="2Mbps home package" service=pppoe
add comment="Njenga Restoration Area [Expiries11]" name="Francis Njuguna R" profile="2Mbps home package" service=pppoe
add comment="Stage Mpya Area [Expries 10]" name="Frank Bypass" profile="2Mbps home package" service=pppoe
add comment="Njenga Area [Expiries 13]" name="Benjamin Simiyu" profile="2Mbps home package" service=pppoe
add comment="S1 Flats [Expiries 28]" name="Wycliff Omboga" profile="2Mbps home package" service=pppoe
add comment="pipeline PCA Area [Expiries10]" name="Vincent Were Home" profile="5Mbps home package" service=pppoe
add comment="Kware Area [Expiries 18]" name="Lenson Nyakora" profile="5Mbps home package" service=pppoe
add name=Alpha profile="2Mbps home package" service=pppoe
add comment="Skyivy Plaza [Expiries 28]" name="Mbarak Mfungizo" profile="5Mbps Office package" service=pppoe
add comment="Stage Mpya Area [Expiries 31]" name="Pipe-tel Electronics" profile="8Mbps home package" service=pppoe
add comment="Honey Suckle Area [Expiries8]" name="Brenda Orijo" profile="5Mbps Office package" service=pppoe
add comment="S1 Flats [Expiries 10]" name="Joseph Osinde" profile="2Mbps home package" service=pppoe
add comment="Honey Suckle Area [Expiries 08]" name="Synaidah Mary" profile="5Mbps Office package" service=pppoe
add comment="Chairman's Area [Expiries04]" name="George Muteti" profile="5Mbps Office package" service=pppoe
add comment="Kware Area Restoration [Expiries 10]" name="Victor Muriithi" profile="3Mbps Office package" service=pppoe
add comment="Njenga Thurnder & Fire Area [Expiries 18]" name="Stephen Mutuku" profile="6Mbps Office package " service=pppoe
add comment="Njenga Area Weicon [Expiries07]" name="Bikolo Cyber" profile="4Mbps home package" service=pppoe
add comment="Kware Area Wimasi [Expiries 18]" name="Cyber Cafe" profile="3Mbps Home Package" service=pppoe
add comment="Mombasa Road Area GM [Expries 22]" name="Istanbul Company" profile="5Mbps Office package" service=pppoe
add caller-id=D8:47:32:9F:95:77 comment="Skyivy Plaza [Expries 10]" name="Bedan Njuki" profile="2Mbps home package" service=pppoe
add comment="Tassia Hill Area [Expiries 10]" name="Matheka Keneth" profile="2Mbps home package" service=pppoe
add name=home profile="8Mbps Office package" service=pppoe
add comment="Njenga Embakasi girls [Expiries14]" name="Benjamin Angose NJ50" profile="5Mbps Office package" service=pppoe
add comment="Stage Mpya Area [Expiries 10]" name=Arecolor profile="3Mbps Home Package" service=pppoe
add comment="Angaza Flats [Expiries 05]" name="Mzee Ngutu" profile="5Mbps Sama Source " service=pppoe
add name=hotspot profile="20Mbps home package" remote-address=73.16.0.3 service=pppoe
add comment="Angza Flats [Expiries19]" name="Fredy Jumaa" profile="5Mbps Sama Source " service=pppoe
add comment="Shelter 5 Plaza [Expiries 19]" name="Felix Gachu" profile="2Mbps home package" service=pppoe
add comment="Skyivy Next [Expries 19]" name="Brian Muchiri" profile="3Mbps Home Package" service=pppoe
add comment="Skyivy PLaza Op [Expiries 19]" name="Kevin Kamau" profile="2Mbps Office package" service=pppoe
add name="Room 714" profile="3Mbps Home Package" service=pppoe
add name="River Road Video" profile="8Mbps home package" service=pppoe
add comment="Kware Area [Expiries 20]" name="Steven Mulinge" profile="5Mbps Sama Source " service=pppoe
/system clock
set time-zone-name=Africa/Nairobi
/system identity
set name=""
/system logging
add action=disk prefix=-> topics=hotspot,info,debug
/tool mac-server
set allowed-interface-list=none
/tool mac-server mac-winbox
set allowed-interface-list=none
/tool mac-server ping
set enabled=no
 
User avatar
sindy
Forum Guru
Forum Guru
Posts: 10889
Joined: Mon Dec 04, 2017 9:19 pm

Re: PPOE access LAN devices

Wed Oct 21, 2020 3:12 pm

I've understood your OP the way that a mere change of the way how the internal addresses are assigned to the clients has made it impossible for you to connect to the client routers. As you've shown private address ranges for both business clients and home clients (it is hard to guess where's the typo in 72.16.0.0/24 which distinguishes it from 172.16.0.0/24, it would have to be a nice coincidence to have a public IP range 72.16.0.0/24), I didn't expect you want to access them from anywhere in the world, I was assuming you access them from a management PC connected to the central router. So describe what exactly worked before and doesn't work now. In any case, the switch from DHCP to PPPoE must have involved changes at both the central router and the client routers, and you have only provided the configuration of the central routers, so half of the picture is missing.
 
conrad254
just joined
Topic Author
Posts: 9
Joined: Tue Oct 20, 2020 6:28 pm

Re: PPOE access LAN devices

Wed Oct 21, 2020 4:17 pm

i will post how my network looks diagram in few
 
conrad254
just joined
Topic Author
Posts: 9
Joined: Tue Oct 20, 2020 6:28 pm

Re: PPOE access LAN devices

Thu Oct 22, 2020 5:54 am

hello so here is what am soing

i have

1WAN
2WAN

i found out that the issue was on mangle rule
- 2.png
if I disable route 2 am able to access both 73..... and 173.... on the LAN 73.. but when am on 173 i cant access or ping any ips on it

/ip pool
add name=ppp-pool-office ranges=173.16.0.100-173.16.0.254
add name=ppp-pool-home ranges=73.16.0.100-73.16.0.254
add name=dhcp_pool2 ranges=10.0.0.2-10.0.0.254
/ip dhcp-server
add address-pool=dhcp_pool2 disabled=no interface=ether7 name=dhcp1
/ip address
add address=173.16.0.1/24 interface=ppp-bridge network=173.16.0.0
add address=73.16.0.1/24 interface=ppp-bridge network=73.16.0.0
add address=10.0.0.1/24 interface=ether7 network=10.0.0.0
/ip dhcp-client
add disabled=no interface=Eth02-shared-home-in
add add-default-route=no disabled=no interface=Eth01-dedicated-office-in
/ip dhcp-server network
add address=10.0.0.0/24 gateway=10.0.0.1
/ip dns
set allow-remote-requests=yes servers=73.16.0.1
/ip dns static
add address=173.16.0.1 disabled=yes name=movies.techxnoss.net type=A
add address=73.16.0.1 name=movies.techxnoss.net type=A
/ip firewall filter
add action=accept chain=forward
/ip firewall mangle
add action=route chain=prerouting dst-address-type=!local passthrough=no \
    route-dst=174.168.99.1 src-address=173.16.0.0/24
add action=route chain=prerouting disabled=yes dst-address-type=!local \
    passthrough=yes route-dst=174.168.88.1 src-address=73.16.0.0/24
add action=route chain=prerouting dst-address-type=!local passthrough=no \
    route-dst=174.168.99.1 src-address=10.0.0.0/24
/ip firewall nat
add action=masquerade chain=srcnat src-address=173.16.0.0/24
add action=masquerade chain=srcnat src-address=10.0.0.0/24
add action=masquerade chain=srcnat src-address=73.16.0.0/24
/ip route rule
add action=lookup-only-in-table dst-address=173.16.0.0/24 table=174.168.99.1
add action=lookup-only-in-table dst-address=73.16.0.0/24 table=174.168.88.1

HERE ARE MY LOGS
You do not have the required permissions to view the files attached to this post.

Who is online

Users browsing this forum: kaherdin, Sheriff1972 and 40 guests