diff options
Diffstat (limited to 'hw_config/intel/setup_network.sh')
-rwxr-xr-x | hw_config/intel/setup_network.sh | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/hw_config/intel/setup_network.sh b/hw_config/intel/setup_network.sh index a6ff6df..4035b7a 100755 --- a/hw_config/intel/setup_network.sh +++ b/hw_config/intel/setup_network.sh @@ -1,11 +1,20 @@ +#!/bin/bash +# SPDX-license-identifier: Apache-2.0 +############################################################################## +# Copyright (c) +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + # Adapt this script according to your network setup # TODO Get networking info from PDF & IDF # TODO Add support in infra engine to update nameserver, etc # files with correct info -#!/bin/bash echo nameserver 8.8.8.8 > /etc/resolv.conf -sed -i 's/NM_CONTROLLED=yes/NM_CONTROLLED=no/g' /etc/sysconfig/network-scripts/ifcfg-eth2 +sed -i 's/NM_CONTROLLED=yes/NM_CONTROLLED=no/g' \ +/etc/sysconfig/network-scripts/ifcfg-eth2 echo GATEWAY=10.10.190.1 >> /etc/sysconfig/network-scripts/ifcfg-eth2 ifup eth2 - |