I am attempting to setup a LHG to give me a second internet connection on a Draytek 2925 Dual Wan.
I am new to Mikrotik and only know basic networking so finding it hard to fathom out what to do next.
Currently the LHG is connected to a LAN socket on the Draytek but will not connect to a WAN socket which is setup to take an assigned IP address on an Ethernet connection. The connection works with a bridged Huawei B525.
Draytek Lan is 192.168.1.1/24
the LNG is running v6.45.3 (stable)
I have 3 interfaces showing
Ether1 is assigned to a fixed IP which the Draytek sees when the LHG is connected to a LAN socket
Ether1 has also picked up an IP address from the Sim card connection
LTE1
Vlan1 which picks up a Draytek DCHP ip address
When its plugged into the LAN I an access the config through the Ether1 fixed IP or the VLAN1 IP.
I have gone into terminal and added passthrough to LTE1 and this went ok with no error messages
I have a good LTE signal and lte1 info is
[admin@MikroTik] > /interface lte info lte1 once
pin-status: ok
registration-status: registered
functionality: full
manufacturer: "MikroTik"
model: "R11e-LTE"
revision: "MikroTik_CP_2.160.000_v010"
current-operator: vodafone UK
lac: XXXX
current-cellid: XXXXXX
enb-id: XXXX
sector-id: XX
phy-cellid: XXXX
access-technology: Evolved 3G (LTE)
session-uptime: 38m20s
imei: XXXXXXXXXXXXXXXX
imsi: XXXXXXXXXXXXXXXX
uicc: XXXXXXXXXXXXXXXXX
earfcn: 6300 (band 20, bandwidth 10Mhz)
rsrp: -77dBm
rsrq: -11dB
sinr: 9dB
cqi: 11
So reading through the info it looks like I need to add a DCHP client to LTE so it will give the Draytek the IP address and it is missing but the terminal command given in the online manual is not working also so cannot add it.
[admin@MikroTik] > /ip dhcp-client
[admin@MikroTik] /ip dhcp-client> add default-route-distance=1 disabled=no interface=lte1
input does not match any value of interface
If I use webconfig it does not give lte1 in the list of interfaces to add a DHCP client to so stumped.
[admin@MikroTik] > export
# aug/14/2019 15:11:01 by RouterOS 6.45.3
# software id = KB48-8D0Q
#
# model = RBLHGR
# serial number = ABXXXXXXXXX
/interface vlan
add interface=ether1 name=vlan1 vlan-id=1
/interface list
add comment=defconf name=WAN
add comment=defconf name=LAN
/interface lte apn
add apn=pp.vodafone.co.uk authentication=pap name="Voda PAYG" \
passthrough-interface=ether1 passthrough-mac=auto password=wap user=wap
/interface lte
set [ find ] apn-profiles="Voda PAYG" band=3,20 mac-address=AC:FF:FF:00:00:00 \
mtu=1500 name=lte1 network-mode=lte
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip hotspot profile
set [ find default=yes ] html-directory=flash/hotspot
/ip pool
add name=default-dhcp ranges=192.168.88.10-192.168.88.254
/ip dhcp-server
add address-pool=default-dhcp interface=ether1 name=defconf
/ip neighbor discovery-settings
set discover-interface-list=LAN
/interface detect-internet
set detect-interface-list=all internet-interface-list=all lan-interface-list=\
all wan-interface-list=all
/interface list member
add comment=defconf interface=ether1 list=LAN
add comment=defconf interface=lte1 list=WAN
add list=LAN
/ip address
add address=192.168.1.146/24 comment=defconf interface=ether1 network=\
192.168.1.0
/ip arp
add address=192.168.1.1 interface=ether1 mac-address=00:1D:AA:B7:EF:D0
/ip dhcp-client
add dhcp-options=hostname,clientid disabled=no interface=vlan1
/ip dhcp-server network
add address=192.168.1.0/24 comment=defconf gateway=192.168.1.146 netmask=24
/ip dns
set allow-remote-requests=yes servers=1.1.1.1,1.0.0.1
/ip dns static
add address=192.168.1.146 name=router.lan ttl=3w
/ip firewall filter
add action=accept chain=input comment=\
"defconf: accept established,related,untracked" connection-state=\
established,related,untracked
add action=drop chain=input comment="defconf: drop invalid" connection-state=\
invalid
add action=accept chain=input comment="defconf: accept ICMP" protocol=icmp
add action=drop chain=input comment="defconf: drop all not coming from LAN" \
in-interface-list=!LAN
add action=accept chain=forward comment="defconf: accept in ipsec policy" \
ipsec-policy=in,ipsec
add action=accept chain=forward comment="defconf: accept out ipsec policy" \
ipsec-policy=out,ipsec
add action=fasttrack-connection chain=forward comment="defconf: fasttrack" \
connection-state=established,related
add action=accept chain=forward comment=\
"defconf: accept established,related, untracked" connection-state=\
established,related,untracked
add action=drop chain=forward comment="defconf: drop invalid" connection-sta
invalid
add action=drop chain=forward comment=\
"defconf: drop all from WAN not DSTNATed" connection-nat-state=!dstnat
connection-state=new in-interface-list=WAN
/ip firewall nat
add action=masquerade chain=srcnat comment="defconf: masquerade" disabled=ye
ipsec-policy=out,none out-interface-list=WAN
/ip ssh
set allow-none-crypto=yes forwarding-enabled=remote
/system clock
set time-zone-name=Europe/London
/system package update
set channel=testing
/tool mac-server
set allowed-interface-list=LAN
/tool mac-server mac-winbox
set allowed-interface-list=LAN
[admin@MikroTik] >
Any suggestions on next step