Community discussions

MikroTik App
 
User avatar
brixsat
newbie
Topic Author
Posts: 41
Joined: Thu Nov 07, 2019 11:10 pm
Location: Porto
Contact:

Samsung TV and Wifi

Thu Jan 02, 2025 5:00 pm

Hi everybody,

Happy new year :)

I have bought a samsung tv model TQ55Q60DAUXXC in December and cant make it work with my wifi ax (capsman v2).
I have tried everything but strangely enough the tv connects to my phone hot spot using 2.4 and wpa2/wpa3.
What am I doing wrong?

Teach me masters.

#
 2025-01-02 14:57:30 by RouterOS 7.16.2
# software id = A4W7-3RQB
#
# model = RB4011iGS+
# serial number = F0*
/interface wifi datapath
add bridge=bridge-home disabled=no name=data-main
/interface wifi security
add authentication-types=wpa2-psk,wpa3-psk disabled=no ft=yes ft-over-ds=yes name=security-main
/interface wifi configuration
add channel.band=2ghz-ax .skip-dfs-channels=10min-cac .width=20/40mhz country=Portugal datapath=data-main disabled=no mode=ap name=cfg-2-main-ax security=security-main security.authentication-types=wpa2-psk .encryption=ccmp .ft=yes .ft-over-ds=yes ssid=Wifi@Casinha
add channel.band=5ghz-ax .skip-dfs-channels=10min-cac .width=20/40/80mhz country=Portugal datapath=data-main datapath.bridge-cost=1 disabled=no mode=ap name=cfg-5-main-ax security=security-main security.authentication-types=wpa2-psk,wpa3-psk .ft=yes .ft-over-ds=yes \
    ssid=Wifi@Casinha
add channel.band=5ghz-ax .skip-dfs-channels=10min-cac .width=20/40mhz country=Portugal datapath=data-main disabled=yes mode=ap name=cfg1 security=security-main security.authentication-types=wpa2-psk .encryption=ccmp .ft=yes .ft-over-ds=yes ssid=Wifi@Casinha
add channel.band=5ghz-ax .skip-dfs-channels=10min-cac .width=20/40/80mhz country=Portugal datapath=data-main datapath.bridge-cost=1 disabled=yes mode=ap name=cfg2 security=security-main security.authentication-types=wpa2-psk,wpa3-psk .ft=yes .ft-over-ds=yes ssid=\
    Wifi@Casinha
/interface wifi access-list
add action=reject disabled=yes
/interface wifi capsman
set ca-certificate=auto certificate=auto enabled=yes interfaces=bridge-home package-path=/ require-peer-certificate=no upgrade-policy=none
/interface wifi provisioning
add action=create-dynamic-enabled comment=sala2g disabled=no master-configuration=cfg-2-main-ax name-format=2GHZ-%I-ax- radio-mac=D4:01:C3:49:98:FB
add action=create-dynamic-enabled comment=sala5g disabled=no master-configuration=cfg-5-main-ax name-format=5GHZ-%I-ax- radio-mac=D4:01:C3:49:98:FA
add action=create-dynamic-enabled comment=escritorio5g common-name-regexp="" disabled=no identity-regexp="" master-configuration=cfg-5-main-ax name-format=5GHZ-%I-ax- radio-mac=D4:01:C3:49:B6:46 slave-name-format=""
add action=create-dynamic-enabled comment=escritorio2g common-name-regexp="" disabled=no identity-regexp="" master-configuration=cfg-2-main-ax name-format=2GHZ-%I-ax- radio-mac=D4:01:C3:49:B6:47 slave-name-format=""
Last edited by BartoszP on Thu Jan 02, 2025 10:00 pm, edited 1 time in total.
Reason: serial removed
 
itimo01
Frequent Visitor
Frequent Visitor
Posts: 57
Joined: Thu Jun 29, 2023 2:55 am
Location: Germany
Contact:

Re: Samsung TV and Wifi

Thu Jan 02, 2025 5:37 pm

Got anything in the logs?
 
erlinden
Forum Guru
Forum Guru
Posts: 2759
Joined: Wed Jun 12, 2013 1:59 pm
Location: Netherlands

Re: Samsung TV and Wifi

Thu Jan 02, 2025 6:01 pm

/interface wifi configuration
add channel.band=2ghz-ax .skip-dfs-channels=10min-cac .width=20/40mhz country=Portugal datapath=data-main disabled=no mode=ap name=cfg-2-main-ax security=security-main security.authentication-types=wpa2-psk .encryption=ccmp .ft=yes .ft-over-ds=yes ssid=Wifi@Casinha
add channel.band=5ghz-ax .skip-dfs-channels=10min-cac .width=20/40/80mhz country=Portugal datapath=data-main datapath.bridge-cost=1 disabled=no mode=ap name=cfg-5-main-ax security=security-main security.authentication-types=wpa2-psk,wpa3-psk .ft=yes .ft-over-ds=yes \
    ssid=Wifi@Casinha
add channel.band=5ghz-ax .skip-dfs-channels=10min-cac .width=20/40mhz country=Portugal datapath=data-main disabled=yes mode=ap name=cfg1 security=security-main security.authentication-types=wpa2-psk .encryption=ccmp .ft=yes .ft-over-ds=yes ssid=Wifi@Casinha
add channel.band=5ghz-ax .skip-dfs-channels=10min-cac .width=20/40/80mhz country=Portugal datapath=data-main datapath.bridge-cost=1 disabled=yes mode=ap name=cfg2 security=security-main security.authentication-types=wpa2-psk,wpa3-psk .ft=yes .ft-over-ds=yes ssid=\
    Wifi@Casinha
You are setting two different authentication-types, while the SSID is identical.
Also you are overwriting the datapath settings, which makes no sense (when you have added /interface wifi datapath).


Better change it to:
/interface wifi configuration
add channel.band=2ghz-ax .skip-dfs-channels=10min-cac .width=20/40mhz country=Portugal datapath=data-main disabled=no mode=ap name=cfg-2-main-ax security=security-main ssid=Wifi@Casinha
add channel.band=5ghz-ax .skip-dfs-channels=10min-cac .width=20/40/80mhz country=Portugal datapath=data-main disabled=no mode=ap name=cfg-5-main-ax security=security-main ssid=Wifi@Casinha
add channel.band=5ghz-ax .skip-dfs-channels=10min-cac .width=20/40mhz country=Portugal datapath=data-main disabled=yes mode=ap name=cfg1 security=security-main ssid=Wifi@Casinha
add channel.band=5ghz-ax .skip-dfs-channels=10min-cac .width=20/40/80mhz country=Portugal datapath=data-main disabled=yes mode=ap name=cfg2 security=security-main ssid=Wifi@Casinha
As you don't have any channels set, two configurations and provisionig rules are sufficient.
 
User avatar
brixsat
newbie
Topic Author
Posts: 41
Joined: Thu Nov 07, 2019 11:10 pm
Location: Porto
Contact:

Re: Samsung TV and Wifi

Wed Jan 08, 2025 1:21 am

At the best in the logs from a lot of changes i get authentication timeout nothing more.
 
User avatar
brixsat
newbie
Topic Author
Posts: 41
Joined: Thu Nov 07, 2019 11:10 pm
Location: Porto
Contact:

Re: Samsung TV and Wifi

Wed Jan 08, 2025 1:44 am

Tried your suggestion and ended up like this, still no luck. The manufacter said the tv should support wifi 5.
# 2025-01-07 23:41:04 by RouterOS 7.16.2
# software id = A4W7-3RQB
#
# model = RB4011iGS+
# serial number = F*********
/interface wifi datapath
add bridge=bridge-home disabled=no name=data-main
/interface wifi security
add authentication-types=wpa2-psk,wpa3-psk disabled=no ft=yes ft-over-ds=yes name=security-main
/interface wifi configuration
add channel.band=5ghz-ax .skip-dfs-channels=10min-cac .width=20/40/80mhz country=Portugal datapath=data-main datapath.bridge-cost=1 disabled=yes mode=ap name=cfg-5-main-ax-my security=security-main security.authentication-types=\
    wpa2-psk,wpa3-psk .ft=yes .ft-over-ds=yes ssid=Wifi@Casinha
add channel.band=2ghz-ax .skip-dfs-channels=10min-cac .width=20/40mhz country=Portugal datapath=data-main disabled=no mode=ap name=cfg-2-main-ax security=security-main ssid=Wifi@Casinha
add channel.band=5ghz-ax .skip-dfs-channels=10min-cac .width=20/40/80mhz country=Portugal datapath=data-main disabled=no mode=ap name=cfg-5-main-ax security=security-main ssid=Wifi@Casinha
/interface wifi capsman
set ca-certificate=auto certificate=auto enabled=yes interfaces=bridge-home package-path=/ require-peer-certificate=no upgrade-policy=none
/interface wifi provisioning
add action=create-dynamic-enabled comment=sala2g disabled=no master-configuration=cfg-2-main-ax name-format=2GHZ-%I-ax- radio-mac=D4:01:C3:49:98:FB
add action=create-dynamic-enabled comment=sala5g disabled=no master-configuration=cfg-5-main-ax name-format=5GHZ-%I-ax- radio-mac=D4:01:C3:49:98:FA
add action=create-dynamic-enabled comment=escritorio5g common-name-regexp="" disabled=no identity-regexp="" master-configuration=cfg-5-main-ax name-format=5GHZ-%I-ax- radio-mac=D4:01:C3:49:B6:46 slave-name-format=""
add action=create-dynamic-enabled comment=escritorio2g common-name-regexp="" disabled=no identity-regexp="" master-configuration=cfg-2-main-ax name-format=2GHZ-%I-ax- radio-mac=D4:01:C3:49:B6:47 slave-name-format=""
Last edited by BartoszP on Thu Jan 09, 2025 10:28 am, edited 1 time in total.
Reason: removed serials - please do not share
 
User avatar
brixsat
newbie
Topic Author
Posts: 41
Joined: Thu Nov 07, 2019 11:10 pm
Location: Porto
Contact:

Re: Samsung TV and Wifi

Tue Feb 04, 2025 4:42 pm

Any one?
 
erlinden
Forum Guru
Forum Guru
Posts: 2759
Joined: Wed Jun 12, 2013 1:59 pm
Location: Netherlands

Re: Samsung TV and Wifi

Tue Feb 04, 2025 5:06 pm

Can you change this:
/interface wifi security
add authentication-types=wpa2-psk,wpa3-psk disabled=no ft=yes ft-over-ds=yes name=security-main

/interface wifi configuration
add channel.band=5ghz-ax .skip-dfs-channels=10min-cac .width=20/40/80mhz country=Portugal datapath=data-main datapath.bridge-cost=1 disabled=yes mode=ap name=cfg-5-main-ax-my security=security-main security.authentication-types=\
    wpa2-psk,wpa3-psk .ft=yes .ft-over-ds=yes ssid=Wifi@Casinha
add channel.band=2ghz-ax .skip-dfs-channels=10min-cac .width=20/40mhz country=Portugal datapath=data-main disabled=no mode=ap name=cfg-2-main-ax security=security-main ssid=Wifi@Casinha
add channel.band=5ghz-ax .skip-dfs-channels=10min-cac .width=20/40/80mhz country=Portugal datapath=data-main disabled=no mode=ap name=cfg-5-main-ax security=security-main ssid=Wifi@Casinha

/interface wifi provisioning
add action=create-dynamic-enabled comment=sala2g disabled=no master-configuration=cfg-2-main-ax name-format=2GHZ-%I-ax- radio-mac=D4:01:C3:49:98:FB
add action=create-dynamic-enabled comment=sala5g disabled=no master-configuration=cfg-5-main-ax name-format=5GHZ-%I-ax- radio-mac=D4:01:C3:49:98:FA
add action=create-dynamic-enabled comment=escritorio5g common-name-regexp="" disabled=no identity-regexp="" master-configuration=cfg-5-main-ax name-format=5GHZ-%I-ax- radio-mac=D4:01:C3:49:B6:46 slave-name-format=""
add action=create-dynamic-enabled comment=escritorio2g common-name-regexp="" disabled=no identity-regexp="" master-configuration=cfg-2-main-ax name-format=2GHZ-%I-ax- radio-mac=D4:01:C3:49:B6:47 slave-name-format=""
To this:
/interface wifi security
add authentication-types=wpa2-psk connect-priority=0/1 disabled=no ft=yes ft-over-ds=yes name=security-main 

/interface wifi configuration
add channel.band=2ghz-ax .skip-dfs-channels=10min-cac .width=20mhz country=Portugal datapath=data-main disabled=no mode=ap name=cfg-2-main-ax security=security-main ssid=Wifi@Casinha
add channel.band=5ghz-ax .skip-dfs-channels=10min-cac .width=20/40/80mhz country=Portugal datapath=data-main disabled=no mode=ap name=cfg-5-main-ax security=security-main ssid=Wifi@Casinha

/interface wifi provisioning
add action=create-dynamic-enabled comment=sala2g disabled=no master-configuration=cfg-2-main-ax name-format=2GHZ-%I-ax-  supported-bands=2ghz-ax
add action=create-dynamic-enabled comment=sala5g disabled=no master-configuration=cfg-5-main-ax name-format=5GHZ-%I-ax-  supported-bands=5ghz-ax
Basically:
  • Only wpa2-psk support (at least for the time being)
  • Decrease bandwidth on 2GHz radio to 20MHz (some devices don't like 40MHz)
  • Remove unnecessary configuration
  • Remove two unnecessary provision rules
In addition, have you removed and added the wireless network to the Samsung?