Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

changing mac address linux

# I tested this in kali linux which is debian-based linux 
# type <ifconfig> to know your ip address and MAC address
# you will see your MAC address like this -> ether 'MAC address'

#to change the MAC address you have to do these steps
sudo ifconfig <network interface> down 
#example -> ifconfig wlan0 down
sudo ifconfig <network interface> hw ether <MAC addr that you wanna change>
#example -> ifconfig wlan0 hw ether 00:11:22:33:44:55
sudo ifconfig <network interface> up
#ifconfig wlan0 up

#NOTE: MAC address will change after the system has rebooted  
Comment

mac address in linux

3 Ways to Find MAC Address In Linux - howtouselinux
https://www.howtouselinux.com 
Comment

change mac address linux

sudo apt install macchanger
sudo ifconfig wlan0 down
sudo macchanger -r wlan0
sudo ifconfig wlan0 up
Comment

PREVIOUS NEXT
Code Example
Shell :: ubuntu notes install 
Shell :: vite react + eslint 
Shell :: set domain name for localhost ubuntu 
Shell :: find large files in ubuntu 
Shell :: install https certificate on dotnet for development 
Shell :: install protonvpn on linux mint 
Shell :: how know linux version 
Shell :: how to install .deb file ubuntu 
Shell :: show all remote branches git 
Shell :: nx remove lib 
Shell :: vscode install-extension command line 
Shell :: settings not showing in ubuntu 
Shell :: how to know what container is using a volume? 
Shell :: windows temp dir 
Shell :: add ssh key to ssh agent 
Shell :: linux print hostname 
Shell :: ubuntu installing gimp 
Shell :: restart cronjob 
Shell :: how to send desktop notification in ubuntu 
Shell :: install xrdp ubuntu 18.04 
Shell :: get powershell version 
Shell :: address already in use flask ubuntu 
Shell :: how to find current active yarn resource manager 
Shell :: vncviewer display 0 
Shell :: how to install guitarix 
Shell :: install anydesk snap linux mint 
Shell :: git config --global remove 
Shell :: installing nodejs on fedora 
Shell :: how to check installed packages in linux command 
Shell :: power is network connected 
ADD CONTENT
Topic
Content
Source link
Name
6+9 =