Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
#!/bin/bash

cat > /etc/network/interfaces << EOF
auto eth1

iface eth1 inet static
  address 10.0.0.27
  netmask 255.255.255.254

iface eth1 inet6 static
  address 1000:10:0:0::27
  netmask 127
  pre-up echo 0 > /proc/sys/net/ipv6/conf/eth1/accept_ra
EOF

ifup eth1