office excel 2016 常见的一些解决方法是,去除所有格式,再根据原有的格式手动一个个调回来,常见原因是人员使用了 wps/office 两种版本编辑造成的内存溢出。。。似乎链接引用也会出问题。
另外一个可怕的原因竟然是和巨硬网络不通,按照观察 excel 2016 似乎是每 1 分钟向巨硬发送 3 个心跳包,特别是无法访问外网的电脑。最终的解决方法,回应-j REJECT --reject-with icmp-net-unreachable ,让发起的连接快速消亡。
# iptables -S forwarding_rule
-N forwarding_rule
-A forwarding_rule -o eth1 -m set ! --match-set allow_dev src -m time --timestart 00:59:00 --timestop 06:00:00 --kerneltz -j DROP
-A forwarding_rule -o eth1 -m set ! --match-set block_ip src -m set --match-set allowIP dst -j ACCEPT
-A forwarding_rule -o eth1 -p tcp -m set ! --match-set Bdst_white src -m set --match-set BdstIP dst -j REJECT --reject-with tcp-reset
-A forwarding_rule -o eth1 -m set ! --match-set Bdst_white src -m set --match-set BdstIP dst -j REJECT --reject-with icmp-net-unreachable
-A forwarding_rule -o eth1 -m set --match-set block_ip src -j REJECT --reject-with icmp-net-unreachable |