Problem with OpenVPN. I don't see in windows 10 other computers in local network

Hello. Problem with configuration OpenVPN. I don't see in windows 10 other computers in local network. I can connect to OpenVPN as client. I have internet, but in windows i don't see local computers. What it can be? thank for you etantion.

Another broadcast domain in case of TUN-server, otherwise that's firewall.

Let's start with the basics:

  • Post your config files here.
  • What does "don't see" exactly mean?

When i didn't use openVPN. In windows i saw all computers in my local networkLocal%20network%20without%20OPENVPN

ClientConfig

verb 3
nobind
dev tun
proto tcp
client
redirect-gateway def1
remote myadress.com
fast-io
compress 
auth-nocache
remote-cert-tls server


<tls-crypt>
-----BEGIN OpenVPN Static key V1-----
...
-----END OpenVPN Static key V1-----
</tls-crypt>
<ca>
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
</ca>
<cert>
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
</cert>
<key>
-----BEGIN ENCRYPTED PRIVATE KEY-----
...
-----END ENCRYPTED PRIVATE KEY-----
</key>

OPENVPN CONFIG FILE

config openvpn 'vpnserver'
	option enabled '1'
	option verb '3'
    	option dev 'tun'
	option dev 'tun0'

	option tls_server '1'
	option route_gateway 'dhcp'
	
	option topology 'subnet'
	option port '1194'

	option proto 'tcp'
	option server '192.168.200.0 255.255.255.0'
	option client_to_client '1'
	option compress 'lzo'
	option tun_mtu '1500'
	option keepalive '10 30'
	option persist_tun '1'
	option persist_key '1'
	option dh '/etc/openvpn/dh.pem'
	option tls_crypt '/etc/openvpn/tc.pem'
	option ca '/etc/openvpn/ca.crt'
	option cert '/etc/openvpn/vpnserver.crt'
	option key '/etc/openvpn/vpnserver.key'
	list push 'redirect-gateway def1'
	list push 'route 192.168.1.0 255.255.255.0'
	list push 'dhcp-option DNS 192.168.1.1'
	list push 'dhcp-option WINS 192.168.1.1'

	list push 'dhcp-option DOMAIN lan'
	list push 'compress lzo'
	list push 'persist-tun'
	list push 'persist-key'

If I remember correctly, you need a WINS server that "bridges" the local network browsing functionality. You have one configured in OpenVPN, so I guess the next step would be to check that SAMBA is indeed acting as a WINS on both networks.