The problem you describe echoes what happens in the virtualization world if the GuestVM is cloned or redeployed into a new network.
The machine boots up in the new network, detects a network card with a new MAC address and creates a new interface for that network.
The result is that you nave an original interface that no longer works but has the original MAC address,
And a new, working network interface but now has a MAC address which isn’t the machine’s default.
Nowadays, openSUSE uniquely fixes this problem in the virtualization world, so it’s been awhile since I’ve had to manually deal with this… I still have to fix this when I deal with other distros…
I can’t find my notes on this and oddly I can’t do a successful Internet search so I’ll have to just describe what should be done from memory, if it doesn’t work, then I hope you can figure out what’s missing…
First thing to know before proceeding is that a main reason why your wlan1 was created is because every hardware NIC that’s manufactured has its own unique MAC address burned into its silicon, that’s why simply replacing old with new resulted in an identified “different” NIC. The unique MAC address from the manufacturer ensures that there is never any doubt that wherever it might be deployed in the world, it will be recognized as unique and won’t conflict in any network, anywhere.
We will need to make changes that use the MAC address in your new card but otherwise with the configuration of your old NIC.
Open 2 text editors to the following location where your network interface files are located
Network interface files are simply files the OS uses to keep track of network devices, and contain configuration settings. They <represent> the associated hardware, but do not have to statically describe a configuration that is exactly the hardware defaults.
/etc/sysconfig/network/
Open your two interface files, in your case wlan0 and wlan1
Copy the MAC address from your wlan1 and paste to over-write and replace the MAC address in wlan0.
Inspect the rest of your wlan0 interface file for anything else that might need to be modified.
Save and close your text editors.
Open up your YaST Network Setting Module.
Delete/remove your wlan1
Reboot.
HTH,
TSU