Monitor ADSL Speed via Mikrotik ?

I’m using a ZTE Adsl Modem bridged with my Mikrotik RB2011. Is it possible to see the ADSL Synchronization Speed via the mikrotik ?

Using /interface bridge monitor shows some stuff, but not that information.

Thanks in advance!

I bad know english, but will try explain how I made it.
I need control ADSL-parameters by modem’s web-interface from LAN and from internet (only from ip:123.123.123.123).
My LAN-ip: 192.168.200.0/24
My Internet-connection name: pppoe-wan
My remote-internet-ip (This is ip-address of other office): 123.123.123.123
Modem Zyxel connected in bridge-mode to Mikrotik “Ether2”.

Connect modem directly to computer.
At first, I changed web-port from 80 to 8585
If modem doesn’t allow to change web-port via web-interface, it’s possible via telnet:
For Zyxel (P660RT3 EE):

sys server load
sys server port web 8585
sys server save

At second, I changed modem’s ip-address to 172.16.18.21 mask:255.255.255.252
Now we can access to web-interface only from computer with ip-address: 172.16.18.22 (mask:255.255.255.252), in browser: 172.16.18.21:8585

Connect modem to Mikrotik Ether2.

Setup Mikrotik:

/ip address
add address=172.16.18.22/30 comment="Access to ADSL-modem" interface=Ether2 network=172.16.18.20

/ip firewall filter
add chain=forward comment="Allow access to ADSL-modem from Lan and Internet" dst-address=172.16.18.21 dst-port=8585 protocol=tcp src-address-list=access-adsl

/ip firewall nat
add action=dst-nat chain=dstnat comment="NAT access to ADSL-modem from Internet" dst-port=8585 in-interface=pppoe-wan protocol=tcp src-address-list=access-adsl to-addresses=172.16.18.21
add action=src-nat chain=srcnat comment="NAT access to ADSL-modem from LAN" dst-port=8585 protocol=tcp src-address-list=access-adsl to-addresses=172.16.18.22

/ip firewall address-list
add address=123.123.123.123 comment="Internet access to ADSL-modem" list=access-adsl
add address=192.168.200.1-192.168.200.254 comment="LAN access to ADSL-modem" list=access-adsl

Now we can access to modem-web-interface and from Lan [only from 192.168.200.0/24] to (http://172.16.18.21:8585)
and from internet [only from ip:123.123.123.123] to (http://our_internet_ip:8585)

Thanks for your input bingo220. Your example works if you need to access the adsl modem either from LAN or Internet. But this is not what in had in mind.

Ex : When I bridge a ZTE modem with a CISCO 1841, once the ppp connection is up and running (or not) I can check it’s status by simply typing at the console show ip interface Dialer1

I wanted to know if I can do the same with the mikrotik console

Thanks again :slight_smile: