答案1
您的操作系统是什么?此答案适用于 Ubuntu 20.04。
IP地址
您可以从终端临时设置 IP 地址(直到下次重新启动):
ifconfig eth0 <your desired the IP address> netmask <the netmask of your network>
前任:
ifconfig eth0 192.168.1.10 netmask 255.255.255.0
或者,永久更改 /etc/netplan/01-network-manager-all.yaml 中的 IP 配置 警告:每行的前缀空格数很重要!
# This file is generated from information provided by
# the datasource. Changes to it will not persist across an instance.
# To disable cloud-init's network configuration capabilities, write a file
# /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following:
# network: {config: disabled}
network:
version: 2
renderer: networkd
ethernets:
enp0s3:
dhcp4: no
addresses: [192.168.1.233/24]
gateway4: 192.168.1.1
nameservers:
addresses: [8.8.8.8,8.8.4.4]
苹果
您无法更改 MAC 地址。有多种方法可以破解/冒充另一台 Mac。如果您使用虚拟机,您可以在虚拟机管理程序菜单中更改它。