Valorant requires a restart or loads slowly when entering the game. What can I do? I have an idea.

Valorant is a free first -person tactical shooting game developed by Riot Games, which combines the exact system of arms shooting and heroism. Players will be transformed into agents and will compete for target points using team collaboration, tactical layout and skills cooperation 5V5 offensive and defense stroke. The game has a low economic system and high competitiveness. Before each game start, buy weapons and armor according to tactical needs and use a combination of heroic skills to create the benefits of the battlefield. Its solid ballistic mechanism and map design require players for accurate purposes and tactical decision -making. At the same time, the rich character pool and skill combination give the game a strategic depth. If you have the problems you need to restart or slowly load while playing a "Varorant", try the following systematic solution: Network environment optimization is the main solution. Because valante servers can be introduced abroad, physical dist...

linux下内网IPv4如何NAT到ipv6,并连通IPv6的实现

 网络拓扑图如下:


·        eth0为网关WAN口,接入广域网。

·        eth1为网关LAN口,接入局域网。

主要配置:

1. linux服务器接口的ipv6地址配置

# sysctl net.ipv6.conf.all.forwarding=1     //打开ipv6转发功能;

#ip addr add 2001:250:1006:5066::100/64 dev eth1  //配置lan口ipv6地址,即内网的网关,前64位与wan口的相同;

 #ip addr add 2001:250:1006:5066:216:d3ff:fe25:93ff/64 dev eth0     // 配置wan口ipv6地址,即从广域网获得的IPv6地址;

# ip -6 route add ::/0 via 2001:250:1006:5066::1 dev eth0 metric 256  //添加默认路由,即广域网所给的网关;

2.配置radvd为局域网自动配置网络信息

安装radvd  #yum install radvd 

配置/etc/radvd.conf       

interface eth1

{

        AdvSendAdvert on;

        MinRtrAdvInterval 30;

        MaxRtrAdvInterval 100;

        prefix 2001:250:1006:5066::/64

        {

                AdvOnLink on;

                AdvAutonomous on;

                AdvRouterAddr on;

        };

};

打开radvd:  #radvd 

此时局域网内的计算机应该已经获得了 2001:250:1006:5066: 开头的IPv6地址。由于没有向ISP申请单独的IPv6地址块,这里不可能在外网上添加路由,同时,由于内网与外网同属一个子网(2001:250:1006:5066/64),也不可能想外网广播路由信息包,这样会造成路由混乱。Linux 提供了一个 proxy_ndp 选项,可以让外网的ndp请求穿过网关。

3.配置npd6

 #sysctl net.ipv6.conf.all.proxy_ndp=1  //开启proxy_ndp功能;

编译安装npd6

#svn checkout http://npd6.googlecode.com/svn/trunk/ npd6 

#cd npd6

#make

#make install

#mv /etc/npd6.conf.sample /etc/npd6.conf

#vi /etc/npd6.conf

主要修改2项:

prefix = 2001:250:1006:5066:

 interface = eth0 #这里要写WAN网卡

启动npd6

#npd6

现在内网就已经可以与外网正常通信了。如果不能通信就在你的内网电脑上开个终端,一直ping着内网网关,即ping 2001:250:1006:5066::100 -t

原文链接:https://blog.csdn.net/xrfsycg/article/details/8663018

Comments

Popular posts from this blog

干翻 nio ,王炸 io_uring 来了 ,史上最详细说明及最全图解!!

Google谷歌镜像网址/网站大全,亲测可用!

便宜好用又稳定的VPN-桔子云,性价比极高!