ClearFoundation Tracker - ClearOS
View Issue Details
0016521ClearOSapp-network - Network Settingspublic2017-08-16 00:282017-09-02 16:39
NickH 
user2 
normaltweakalways
closedfixed 
7.3.1 
7.4.0 Beta 17.4.0 Beta 1 
0016521: Webconfig does not recognise wls prefixed interfaces
Please see https://www.clearos.com/clearfoundation/social/community/running-7-3-home,-wifi-interface-is-not-showing-up-under-ip-setting-or-dhcp# [^]

A wireless card was added to ClearOS and given the interface name wls2. This is not allowed as a valid interface in Webconfig. See /usr/clearos/apps/network/libraries/Iface.php around line 1363.

One solution is to change:
preg_match('/^wlan/', $this->iface)
to
preg_match('/^wl/', $this->iface)

This would also obsolete the line:
preg_match('/^wlp/', $this->iface)

Alternatively just add the line:
preg_match('/^wls/', $this->iface)
Difficult. You would need to find a wireless NIC/motherboard combination which would produce a wls* interface name.
No tags attached.
related to 0014211closed dloper Add wwanN as valid interface in network list 
Issue History
2017-08-16 00:28NickHNew Issue
2017-08-16 08:23user2Assigned To => user2
2017-08-16 08:23user2Statusnew => confirmed
2017-08-16 08:25user2Note Added: 0006311
2017-08-16 08:25user2Target Version => 7.4.0 Beta 1
2017-08-16 15:28user2Relationship addedrelated to 0014211
2017-08-16 15:28user2Statusconfirmed => resolved
2017-08-16 15:28user2Fixed in Version => 7.4.0 Beta 1
2017-08-16 15:28user2Resolutionopen => fixed
2017-09-02 16:39user2Statusresolved => closed

Notes
(0006311)
user2   
2017-08-16 08:25   
Ahhhh... the first two letters of physical interface names are important.

Two character prefixes based on the type of interface:
 * en -- ethernet
 * sl -- serial line IP (slip)
 * wl -- wlan
 * ww -- wwan

Details in this blog post - https://major.io/2015/08/21/understanding-systemds-predictable-network-device-names/ [^]