Linux本地網路指令碼配置 內網與外網

2021-07-09 21:10:42 字數 1529 閱讀 7013

指令碼位於

:     /etc/sysconfig/network-scripts/ifcfg-eth0

device=eth0                     //網絡卡的名字

bootproto=static // none靜態ip dhcp 動態獲取ip static 靜態

onboot=yes //是否開啟網絡卡

ipaddr=192.168.88.xx (xx:自已想配置的ip)

gateway=192.168.88.1 // 閘道器

netmask=255.255.255.0 //子網掩碼

hwaddr=xx:xx:xx:xx:xx //硬體mac位址

到命令列,輸入:

service networkmanager   stop    //關掉網路管理(顯示失敗則之前是關閉的)

chkconfig  networkmanager off     //開機不起動網路管理

service network restart   //

重啟網路服務

ifconfig eth0 

檢視配置是否生效 ,檢查網路是否可通以及網路ip

以上是內網的指令碼配置,接下來我們來看外網的網路配置:

cd  /etc/sysconfig/network-scripts/

先檢視自己的網絡卡哪張可以用mii-tool  命令看到link-ok

假如eth0  link-ok

配置指令碼:

vim   ifcfg-eth0:0

device=eth0:0

bootproto=static

onboot=yes

ipaddr=172.16.1.***

netmask=255.255.255.0

gateway=172.16.1.1

命令:

service network restart   //網路重啟

ping  172.16.1.1    //ping通閘道器

配置dns

/etc/resolv.conf    //dns的配置指令碼

vim  /etc/resolv.conf  

//寫指令碼

nameserver    8.8.8.8

#nameserver 114.114.114.114

檢視dns伺服器

輸出命令:nslookup

>server

default server: 114.114.114.114

address: 114.114.114.114#53

>exit       //(退出

)檢查是否可以解析網域名稱

通可上網

python 修改本地網路配置

本文主要說一下怎麼使用python來修改本地的ip和dns等,因為有本地的ip和dns都是隨機獲取的,有些時候不是很方便,需要修改,我就稍微的封裝了一下,但是隨機ip和閘道器 子網掩碼等我都沒有設定為引數,因為經常用也懶得改了,可以自己去修改一下。測試的時候,在win8.1上面需要用管理員身份才能執...

Study Flex《訪問本地 網路資源》

在flex開發中經常中出現安全沙箱問題。securityerror error 2148 swf 檔案 不能訪問本地資源 只有僅限於檔案系統的 swf 檔案和可信的本地 swf 檔案可以訪問本地資源。at flash.net urlstream load at flash.net urlloader...

centos 6 x 配置yum源(本地 網路)

一 本地yum源 1 系統預設已經安裝了可使用yum的軟體包,所以可以直接配置 root localhost cd etc yum.repos.d yum源配置檔案放置目錄 root localhost yum.repos.d mv centos base.repo centos base.repo...