diff options
author | Robert Alessi <alessi@robertalessi.net> | 2021-06-21 15:29:19 +0200 |
---|---|---|
committer | Robert Alessi <alessi@robertalessi.net> | 2021-06-21 15:29:19 +0200 |
commit | 561f2901e4c547b0bd95e5eb08ea11bfc981f870 (patch) | |
tree | e35a55971344d4eecdaf6ce693d332a1655b6d92 /my-x200.confd | |
parent | c9a430d6ae40f5f7e2c99d2c088d5b54456ca140 (diff) | |
download | my-x200-master.tar.gz |
Diffstat (limited to 'my-x200.confd')
-rw-r--r-- | my-x200.confd | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/my-x200.confd b/my-x200.confd index ae9606e..0080db2 100644 --- a/my-x200.confd +++ b/my-x200.confd | |||
@@ -30,21 +30,39 @@ PWMFREQ_RATE="0x8bb7b16dc5b6a" | |||
30 | 30 | ||
31 | # IMPORTANT NOTICE: As dhcpcd uses ANY ONE network interface that is | 31 | # IMPORTANT NOTICE: As dhcpcd uses ANY ONE network interface that is |
32 | # connected to the DHCP device to generate the DIUD-LLT file, the | 32 | # connected to the DHCP device to generate the DIUD-LLT file, the |
33 | # wireless interface MUST have its MAC address spoofed as well. To | 33 | # wireless interface MUST have its MAC address spoofed as well. |
34 | # make wpa_supplicant handle this, add the following lines in | 34 | |
35 | # To have wpa_supplicant handle this, add the following lines in | ||
35 | # /etc/wpa_supplicant/wpa_supplicant.conf: | 36 | # /etc/wpa_supplicant/wpa_supplicant.conf: |
37 | # | ||
36 | # ctrl_interface=DIR=/run/wpa_supplicant GROUP=netdev | 38 | # ctrl_interface=DIR=/run/wpa_supplicant GROUP=netdev |
37 | # update_config=1 | 39 | # update_config=1 |
38 | # mac_addr=1 | 40 | # mac_addr=1 |
39 | # preassoc_mac_addr=1 | 41 | # preassoc_mac_addr=1 |
42 | # | ||
43 | # Alternatively, supply the actual wireless interface name as value of | ||
44 | # the variable 'wireless_interface' below. | ||
40 | 45 | ||
41 | # Finally, it is advisable to set the hostname to "localhost" and have | 46 | # Finally, it is advisable to set the hostname to "localhost" and have |
42 | # "hostname_short" in /etc/dhcpcd.conf so that the actual hostname of | 47 | # "hostname_short" in /etc/dhcpcd.conf so that the actual hostname of |
43 | # the machine should not be sent to the DHCP server. | 48 | # the machine should not be sent to the DHCP server. |
44 | 49 | ||
45 | enable_privacy="false" # either 'true' or 'false' | 50 | enable_privacy="false" # either 'true' or 'false' |
46 | wired_interface="" # supply the actual interface name! In case of | 51 | |
47 | # doubt, see the output of 'ls /sys/class/net/' | 52 | # If not set below, the MAC address of the wired interface will not be |
53 | # spoofed. | ||
54 | wired_interface="" # supply the actual interface name! In case of | ||
55 | # doubt, see the output of 'ls /sys/class/net/' | ||
56 | |||
57 | # If not set below, the MAC address of the wireless interface will not | ||
58 | # be spoofed, unless the spoofing is handled by wpa_supplicant as | ||
59 | # described above. | ||
60 | wireless_interface="" # supply the actual interface name! In case of | ||
61 | # doubt, see the output of 'ls /sys/class/net/' | ||
62 | |||
63 | # macchanger options: | ||
64 | macchanger_options="-r" # this sets a fully random MAC. Adapt. (Read | ||
65 | # `man macchanger` on how to do this.) | ||
48 | 66 | ||
49 | ################## | 67 | ################## |
50 | # Backup options # | 68 | # Backup options # |