LHG 60g no internet from the antenna interface [SOLVED]

Hi everyone,
i have a problem with LHG 60g (ptp) since I configured the vlan my antenna does not have internet connection but all the PCs that are connected via the bridge yes and therefore I cannot update the antenna software.

This is my configuration of LHG 60g (Ptp)

this is my configuration station bridge

[admin@MikroTik] > /export
# apr/29/2020 13:26:23 by RouterOS 6.46.5
# software id = XXXX-XXX
#
# model = RBLHGG-60ad
# serial number = XXXXXXXXXX
/interface bridge
add admin-mac=XX:XX:XX:XX:XX:XX auto-mac=no comment=defconf name=bridge
/interface w60g
set [ find ] disabled=no frequency=58320 mode=station-bridge name=wlan60-1 \
    password=xxxxxxxx put-stations-in-bridge=bridge ssid=\
    MikroTik123
/interface w60g station
add mac-address=XX:XX:XX:XX:XX:XX name=wlan60-station-1 parent=wlan60-1 \
    put-in-bridge=bridge remote-address=XX:XX:XX:XX:XX:XX
/interface vlan
add interface=bridge name=vlan10 vlan-id=10
/interface list
add name=WAN
add name=LAN
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip hotspot profile
set [ find default=yes ] html-directory=flash/hotspot
/user group
set full policy="local,telnet,ssh,ftp,reboot,read,write,policy,test,winbox,passw\
    ord,web,sniff,sensitive,api,romon,dude,tikapp"
/interface bridge port
add bridge=bridge comment=defconf interface=ether1 pvid=10
add bridge=bridge comment=defconf horizon=1 interface=wlan60-1 pvid=10
/interface bridge vlan
add bridge=bridge tagged=bridge,ether1,wlan60-station-1,wlan60-1 vlan-ids=10
/interface list member
add interface=wlan60-1 list=WAN
add interface=ether1 list=LAN
/ip address
add address=192.168.1.4/24 comment=defconf interface=ether1 network=192.168.1.0
add address=192.168.1.14/24 interface=vlan10 network=192.168.1.0
/ip dns
set servers=8.8.8.8
/ip route
add distance=1 gateway=192.168.1.1
/system clock
set time-zone-name=Europe/Rome
/system identity
set name="MikroTikTest"
/system leds
set 0 disabled=yes
set 1 disabled=yes
set 2 disabled=yes
set 3 disabled=yes
set 4 disabled=yes
/system leds settings
set all-leds-off=immediate
/system ntp client
set enabled=yes primary-ntp=185.19.184.35 secondary-ntp=212.45.144.88
[admin@MikroTik] >

this configuration of bridge

# apr/29/2020 13:42:35 by RouterOS 6.46.5
# software id = XXXX-XXXX
#
# model = RBLHGG-60ad
# serial number = XXXXXXXX
/interface bridge
add admin-mac=XXXXXXX auto-mac=no comment=defconf name=bridge
/interface ethernet
set [ find default-name=ether1 ] speed=100Mbps
/interface w60g
set [ find ] disabled=no frequency=58320 mode=bridge name=wlan60-1 password=\
    XXXXXXX put-stations-in-bridge=bridge ssid=MikroTik123
/interface w60g station
add mac-address=XXXXXXX name=wlan60-station-1 parent=wlan60-1 \
    put-in-bridge=bridge remote-address=XXXXXXXXX
/interface vlan
add interface=bridge name=vlan10 vlan-id=10
/interface list
add name=WAN
add name=LAN
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip hotspot profile
set [ find default=yes ] html-directory=flash/hotspot
/user group
set full policy="local,telnet,ssh,ftp,reboot,read,write,policy,test,winbox,passw\
    ord,web,sniff,sensitive,api,romon,dude,tikapp"
/interface bridge port
add bridge=bridge comment=defconf interface=ether1
/interface bridge vlan
add bridge=bridge tagged=bridge,ether1,wlan60-1,wlan60-station-1 vlan-ids=10
/interface list member
add interface=wlan60-1 list=WAN
add interface=bridge list=LAN
/ip address
add address=192.168.1.5/24 comment=defconf interface=ether1 network=192.168.1.0
add address=192.168.1.15/24 interface=vlan10 network=192.168.1.0
/ip dhcp-relay
add dhcp-server=192.168.1.1 disabled=no interface=wlan60-1 name=relay1
/ip dns
set servers=8.8.8.8
/ip firewall nat
add action=masquerade chain=srcnat out-interface=bridge
/ip route
add distance=1 gateway=192.168.1.1
/system clock
set time-zone-name=Europe/Rome
/system identity
set name="MikroTiktest1"
/system leds
set 0 disabled=yes
set 1 disabled=yes
set 2 disabled=yes
set 3 disabled=yes
set 4 disabled=yes
/system leds settings
set all-leds-off=immediate
/system ntp client
set enabled=yes primary-ntp=147.135.207.214 secondary-ntp=85.199.214.99
[admin@MikroTik] >

Thank you all. :slight_smile:

Well, to start with, whatever you ve added inside the Interface Bridge VLAN does not work unless Bridge VLAN Filtering is enabled…
But you do not as well need any Bridge VLAN Filtering on your Antennas…

What i would do is create a seperate VLAN for my management purposes on my Router, eg VLAN 99 with address 192.168.99.1/24 and then on the Antennas i would just create an Interface VLAN with VID 99 with Interface the Bridge, set an IP address on that VLAN e.g. 192.168.99.2/24, set DNS 192.168.99.1 and default Route to 192.168.99.1 …

Or

If you want to keep the VID 10, then create an Interface as described above with VID 10 in the Interface VLAN, set an address 192.168.1.x/24 on the VLAN10 Interface, set your routes to 192.168.1.1 and DNS 192.168.1.1

Under IP addresses you do not need 192.168.1.x on both the VLAN and the eth Interface… just on the VLAN Interface…

ok thanks for the help and sorry for my lack, now everything works.
Thanks

You can add a little more details of what did you change upon my suggestion so that we can help others who meet the same problem ?
Also please mark the post as solved :smiley:

I just activated the VLAN filtering on bridge and I inserted the vlan that I had not indicated in the previous post.

It is also useful to follow this guide.
https://wiki.mikrotik.com/wiki/Manual:Wireless_VLAN_Trunk

thanks.