7

In my campus, some people they are using netcut in Windows and they are blocking us not to use Internet.

Since I am a Ubuntu user, I can't install neither nutcut nor netcut-defender to protect and even I tried TuxCut. It's is also not working properly.

Can any one give me the right solution for this?

Pablo Bianchi
  • 17,371
Suresh
  • 349

2 Answers2

4

Try ArpON, it is already in Ubuntu repository:

sudo apt-get install arpon

sudo arpon -i eth0 -d

References:

user.dz
  • 49,176
2

Try changing MAC address. It will remove you from the list of the attacker.

  1. Figure out Network Interface name which connects you to Wi-Fi with ip addr or

    sudo ifconfig
    

    If ifconfig is not installed

    sudo apt install net-tools
    
  2. This will give you a list of network interface card. Some of them are for Bluetooth, Wi-Fi. Note down the name responsible for Wi-Fi connection. For my PC it was wlp3s0

  3. Now install macchanger

    sudo apt install macchanger
    
  4. Turn off the network interface card

    sudo ifconfig wlp3s0 down

  5. Randomly change macaddress

    sudo macchanger -r wlp3s0
    
  6. Turn on the network interface card

    sudo ifconfig wlp3s0 up
    
  7. Turn off Wi-Fi and turn it on

MAC address is changed, internet will work fine. This changes MAC address temporarily. Upon restart you need to change address again.

Pablo Bianchi
  • 17,371