SSTP and OVPN Problem in same time

Hello all,

I made OpenVPN settings on the mikrotik RB750 and everything worked fine. but for some reason I also needed to configure the SSTP protocol at the same time. after setting it up, most shared printers and shared folders between computers on the LAN network crashed. so that the prints sent were randomly printed or the shared folder was opened. most systems could not find shared printers, so the files sent for printing remained in the system stack and the printer was offline. folders shared between systems were also unavailable. after the ping printer, usually a reply would come in and then a few Requested time out message was shown.
After two days of searching across the internal network (at first I thought the systems were infected with the virus) I realized that by disabling any of the mikrotik WAN or LAN interfaces, things were back to normal. I came to the conclusion that the problem is in the Mikrotik settings. but I did not find anything in search of the problem. Please help me solve the problem.

Anybody could help me?
Thanks in advance anyone!

The VPNs alone can not cause all these problems unless other configurations took place as well…
But i dont see how someone could help you without seeing any of your configuration…

I realized that by disabling any of the mikrotik WAN or LAN interfaces, things were back to normal.

What if you disable the VPNs ? Problem continues ?

Turning off VPNs also didn’t solve the problem. only by disabling one of the WAN or LAN interfaces would the problem be resolved. I also upgraded the software version to the latest RouterOS version 6.46.1. the settings for both VPNs are as follows:

/interface ethernet
set [ find default-name=ether1 ] comment=WAN speed=100Mbps
set [ find default-name=ether2 ] arp=proxy-arp comment=LAN speed=100Mbps
set [ find default-name=ether3 ] speed=100Mbps
set [ find default-name=ether4 ] speed=100Mbps
set [ find default-name=ether5 ] speed=100Mbps
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip ipsec proposal
set [ find default=yes ] enc-algorithms=aes-128-cbc
/ip pool
add name=OpenVPN ranges=192.168.100.216-192.168.100.245
/ppp profile
add dns-server=8.8.8.8 local-address=192.168.100.13 name=SSTP_Profile
remote-address=OpenVPN use-encryption=required
set *FFFFFFFE address-list=VPN_User_Client dns-server=8.8.8.8 local-address=
192.168.100.13 remote-address=OpenVPN
/interface ovpn-server server
set auth=sha1 certificate=SERVER cipher=aes256 default-profile=
default-encryption enabled=yes require-client-certificate=yes
/interface sstp-server server
set authentication=mschap2 certificate=myCA default-profile=SSTP_Profile
enabled=yes force-aes=yes pfs=yes
/ip address
add address=192.168.100.13/24 comment=LAN interface=ether2 network=
192.168.100.0
add address=192.168.1.100/24 comment=WAN-ADSL interface=ether1 network=
192.168.1.0
/ip dhcp-client
add interface=ether1
/ip firewall filter
add action=accept chain=input comment=“Allow OpenVPN” dst-port=1194 protocol=
tcp
add action=accept chain=input comment=“Allow OpenVPN” dst-port=1194 protocol=
udp
add action=accept chain=input comment=“SSTP incoming Connection” dst-port=443
protocol=tcp
/ip firewall nat
add action=masquerade chain=srcnat log=yes log-prefix=OVPN src-address=
192.168.100.216-192.168.100.245
/ip route
add distance=1 gateway=192.168.1.254
/ip service
set telnet disabled=yes
set ftp disabled=yes
set www disabled=yes
set ssh disabled=yes
/ppp secret
add name=test password=test! profile=default-encryption service=ovpn
add name=test2 password=test2! profile=SSTP_Profile service=sstp
/system ntp client
set enabled=yes primary-ntp=194.225.50.25 secondary-ntp=31.193.152.2

Any clues?

Turning off VPNs also didn’t solve the problem

So isnt it obvious that the problem is not the VPN ?
What changes did you make to your configuration except the VPN ?