Index Tags About

网络共享

1. 通过网线连接两台 Windows 电脑

主要用来传输数据,网速受网卡限制。我测到的峰值大概在 100MiB/s

  1. 在两台电脑上找到对应的以太网接口,使用网线连接。
  2. 设置 IPV4 协议,将一台电脑设置为:

    IPv4 Address:    192.168.0.1
    Subnet Mask:     255.255.255.0
    
  3. 另一台电脑的相关设置写为:

    IPv4 Address:    192.168.0.2
    Subnet Mask:     255.255.255.0
    
  4. 此时可以使用 dufs 1等进行文件分享。

2. Linux 通过网线分享网络给 Windows

2.1. 以 NetworkManager 为例

  1. 在 Linux 上配置新的共享网络

    nmcli connection add type ethernet con-name SharedConnection ifname
    nmcli connection modify SharedConnection ipv4.method shared
    nmcli connection modify SharedConnection ipv6.method disabled
    nmcli connection up SharedConnection
    
  2. 在 Windows 上修改“更改适配器选项”
    1. 网络等改成自动分配
    2. 在高级选项中修改自动跃点数为比较大的数字,以降低网络优先级

3. Linux 开启 5G 热点

# echo options iwlwifi lar_disable=1 >> /etc/modprobe.d/iwlwifi.conf

这个方法在 5.5 已经被移除,具体的提交记录为[PATCH v5.5 6/7] iwlwifi: remove lardisable module parameter
因此我们可以通过一些 dirty 的方法来恢复这个选项。

reless/intel/iwlwifi/iwl-nvm-parse.c
index 480f8edbfd..109d64b539 100644
--- a/drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c
+++ b/drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c
@@ -1557,7 +1557,7 @@ iwl_parse_nvm_data(struct iwl_trans *trans, const struct iwl_cfg *cfg,
                return NULL;
        }

-       if (lar_enabled &&
+       if (0 && lar_enabled &&
            fw_has_capa(&fw->ucode_capa, IWL_UCODE_TLV_CAPA_LAR_SUPPORT))
                sbands_flags |= IWL_NVM_SBANDS_FLAGS_LAR;

@@ -2100,7 +2100,7 @@ struct iwl_nvm_data *iwl_get_nvm(struct iwl_trans *trans,
        nvm->valid_tx_ant = (u8)le32_to_cpu(rsp->phy_sku.tx_chains);
        nvm->valid_rx_ant = (u8)le32_to_cpu(rsp->phy_sku.rx_chains);

-       if (le32_to_cpu(rsp->regulatory.lar_enabled) &&
+       if (0 && le32_to_cpu(rsp->regulatory.lar_enabled) &&
            fw_has_capa(&fw->ucode_capa,
                        IWL_UCODE_TLV_CAPA_LAR_SUPPORT)) {
                nvm->lar_enabled = true;

之后进行编译内核,安装,重启内核后, LAR 就被关闭了。

此时查看信道:

iw list | grep MHz | grep -v disabled | grep -v 'no IR' | grep -F '*'
                        * 2452.0 MHz [9] (20.0 dBm)
                        * 2457.0 MHz [10] (20.0 dBm)
                        * 2462.0 MHz [11] (20.0 dBm)
                        * 2467.0 MHz [12] (20.0 dBm)
                        * 2472.0 MHz [13] (20.0 dBm)
                        * 5180.0 MHz [36] (20.0 dBm) (radar detection)
                        * 5200.0 MHz [40] (20.0 dBm) (radar detection)
                        * 5220.0 MHz [44] (20.0 dBm) (radar detection)
                        * 5240.0 MHz [48] (20.0 dBm) (radar detection)
                        * 5260.0 MHz [52] (20.0 dBm) (radar detection)
                        * 5280.0 MHz [56] (20.0 dBm) (radar detection)
                        * 5300.0 MHz [60] (20.0 dBm) (radar detection)
                        * 5320.0 MHz [64] (20.0 dBm) (radar detection)
                        * 5745.0 MHz [149] (22.0 dBm)
                        * 5765.0 MHz [153] (22.0 dBm)
                        * 5785.0 MHz [157] (22.0 dBm)

发现部分 5G 信道已经被打开了。

3.1. 查看当前 wifi 信息

$ iwconfig
lo        no wireless extensions.

enp52s0   no wireless extensions.

wlan0     IEEE 802.11  ESSID:"AndroidAP_9142"
          Mode:Managed  Frequency:5.805 GHz  Access Point: **********
          Bit Rate=1.0806 Gb/s   Tx-Power=22 dBm
          Retry short limit:7   RTS thr:off   Fragment thr:off
          Power Management:off
          Link Quality=59/70  Signal level=-51 dBm
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:4   Missed beacon:0

ap0       IEEE 802.11  Mode:Master  Tx-Power=22 dBm
          Retry short limit:7   RTS thr:off   Fragment thr:off
          Power Management:on

可以看到频率为 Frequency:5.805 GHz 已经为 5G 了。

3.2. 开启热点

可以使用 linux-router 工具。
但是需要确认正确的信道(通过频率来找到对应的信道)。

Footnotes:

1

A file server that supports static serving, uploading, searching, accessing control, webdav…

天玄而地黄。