This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
auto ens3 | |
iface ens3 inet dhcp | |
iface ens3 inet6 static | |
address 2001:19fo:b001:fb5:5400:02ff:fe0a:1ee8 | |
netmask 64 | |
up ip -6 route del default dev ens3 | |
up ip -6 route add 2001:19f0:ffff::1/128 via fe80::fc00:2ff:fe0a:1ee8 dev ens3 | |
down ip -6 route del 2001:19f0:ffff::1/128 via fe80::fc00:2ff:fe0a:1ee8 dev ens3 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@fire:/usr/local/etc/frr # cat /etc/rc.conf | |
hostname="fire.winvive.com" | |
ifconfig_vtnet0="inet 206.162.242.66 netmask 255.255.255.252" | |
defaultrouter="206.162.242.65" | |
ipv6_activate_all_interfaces="YES" | |
ipv6_router_enable="YES" | |
ipv6_gateway_enable="YES" | |
ifconfig_vtnet0_ipv6="inet6 2607:f2f8:ac88:: prefixlen 64" | |
ifconfig_vtnet0_alias0="inet6 fe80::2 prefixlen 64" | |
ipv6_defaultrouter="fe80::1%vtnet0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$time = microtime(); | |
$time = explode(' ', $time); | |
$time = $time[1] + $time[0]; | |
$start = $time; | |
if(isset( $_GET["Domain"])){ | |
$domain=$_GET["Domain"]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@fire ~]# cat /etc/rc.conf | |
hostname="fire.winvive.com" | |
ifconfig_vtnet0="inet 206.162.242.66 netmask 255.255.255.252" | |
defaultrouter="206.162.242.65" | |
#ipv6_activate_all_interfaces="YES" | |
ifconfig_vtnet0_ipv6="inet6 FE80::2 prefixlen 64" | |
ifconfig_vtnet0_alias0_ipv6="inet6 2607:f2f8:ac88::/64" | |
ipv6_defaultrouter="FE80::1%vtnet0" | |
sshd_enable="YES" | |
local_unbound_enable="YES" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@fire ~]# cat /etc/rc.conf | |
hostname="fire.winvive.com" | |
ifconfig_vtnet0="inet 206.162.242.66 netmask 255.255.255.252" | |
defaultrouter="206.162.242.65" | |
ipv6_activate_all_interfaces="YES" | |
ifconfig_vtnet0_alias0="inet6 2607:f2f8:ac88:: prefixlen 64" | |
ifconfig_vtnet0_alias1="inet6 FE80::2 prefixlen 64" | |
ipv6_defaultrouter="FE80::1%vtnet0" | |
sshd_enable="YES" | |
local_unbound_enable="YES" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
auto lo | |
iface lo inet loopback | |
iface enp1s0f0 inet manual | |
iface enp1s0f1 inet manual | |
auto vmbr0 | |
iface vmbr0 inet static | |
address 206.162.242.67 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//stream_set_blocking(STDIN, 0); | |
//$f = fgets(STDIN); | |
//var_dump($f); | |
echo "Domain,A Record,PTR Record of A,WWW Record,Nameservers,MX Records,A Record of MX,PTR Record of A of MX\n"; | |
while (($ind = fgets(STDIN)) !== false) { | |
$ind=trim($ind); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Errors were encountered while processing: | |
pve-firewall | |
qemu-server | |
proxmox-ve | |
pve-manager | |
pve-ha-manager | |
pve-container | |
E: Sub-process /usr/bin/dpkg returned an error code (1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@ether ~]# sysbench --num-threads=1 --test=memory --memory-total-size=2G run | |
WARNING: the --test option is deprecated. You can pass a script name or path on the command line without any options. | |
sysbench 1.0.9 (using system LuaJIT 2.0.4) | |
Running the test with following options: | |
Number of threads: 1 | |
Initializing random number generator from current time | |
Running memory speed test with the following options: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@fire:/home # sysbench --num-threads=1 --test=memory --memory-total-size=2G run | |
WARNING: the --test option is deprecated. You can pass a script name or path on the command line without any options. | |
sysbench 1.0.9 (using system LuaJIT 2.0.5) | |
Running the test with following options: | |
Number of threads: 1 | |
Initializing random number generator from current time | |
Running memory speed test with the following options: |