Network Experiment Environment Construction

来源:http://www.cnblogs.com/00100011F/archive/2016/04/08/5370122.html
-Advertisement-
Play Games

In order to provide an environment for network experiments in the future, I use VirutalBox to create some hosts. My real host is Ubuntu 14.04 LTS. And ...


In order to provide an environment for network experiments in the future, I use VirutalBox to create some hosts.
My real host is Ubuntu 14.04 LTS.
And I will install some OSs gradually.


CentOS 7 Installation


  • Download (I use CentOS 7 Minimal)

  • Network Configuration

Here I use Bridged-Adapter Mode, and I will descript the difference among Bridged-Adapter, Host-only and NAT in Appendix A

Then, let's dirty our hands in the OS:

Configure Gateway:
[root@localhost ~]# vi /etc/sysconfig/network

You should add:

NETWORKING=yes
GATEWAY=192.168.1.1 # configure the gateway IP

Configure DNS:
[root@localhost ~]# vi /etc/resolv.conf

add:

nameserver 192.168.1.1

Configure IP:
[root@localhost ~]# vi /etc/sysconfig/network-scripts/ifcfg-enp0s3 (here is mine, yours may be difference)

add:

IPADDR=192.168.1.123
NETMASK=255.255.255.0
GATEWAY=192.168.1.1

and modify:

ONBOOT=yes
BOOTPROTO=static (if your local network's DHCP server is available , you can set it to *dhcp*)

Now:

service network restart

Completed!
And you can use

ping www.baidu.com

to test your network.

  • Install Desktop Environment

Firstly, you'd better update your OS:

yum update

Then:

yum groupinstall "X Window system"
yum groupinstall gnome

Completed!
And you can use

startx

to turn on the Desktop Environment.

P.S.
There is no ifconfig instruction in CentOS Minimal !
How can that be !!!

Solution:
Determine which packet provides that tool:

yum provides ifconfig

We can see that it is net-tools that provides ifconfig
So,

yum install net-tools

Bingo!
Now you can use it !
(You can do similarly to install other tools)

Here are Some questions:


Appendix A - Difference Among Bridged-Adapter, Host-only And NAT Mode


Learn from here

Virutal Machine always has these three modes.
http://www.cnblogs.com/ggjucheng/archive/2012/08/19/2646007.html
It is too late and I will go to bed.
Write it up tomorrow.


Appendix B - Files About Network Configuration in Linux (RedHat series)


  • /etc/sysconfig/network

This file is used to configure hostname and whether to start up:

NETWORKING=yes # means your network will start up
GATEWAY=192.168.1.1

  • /etc/sysconfig/network-scripts/ifcfg-enp0s3 (the exact file-name is ifcfg-YOUR-NETWORK-CARD-NAME)

This file is about network configuration:

TYPE=Ethernet # network card type
DEVICE=eth0 # name of network card
ONBOOT=yes # boot or not when OS starts up
BOOTPROTO=static # use Address Protocol: static bootp dhcp
IPADDR=192.168.1.11 # network card's IP
NETMASK=255.255.255.0 # Sub-net mask
GATEWAY=192.168.1.1 # IP of gateway
DNS=10.203.104.41 # DNS server's IP
HWADDR=00:0C:29:13:5D:74 # MAC address
BROADCAST=192.168.1.255 # broadcast address

  • /etc/resolv.conf

This file is of DNS configuration.
And it mainly has four keywords:

nameserver # define the IP of DNS server
domain # define local host domain
search # define the seraching list of domain.It can't co-exist with domain entry
sortlist #

  • /etc/hosts

This file is the static information about host names (from FHS)
And it seems that the table in /etc/hosts is prior to DNS.
We can test: (I use apache2 on my PC and there is a index.html created by me in the /var/www/html/ directory)

service apache2 start

Then add

192.168.1.103 www.baidu.com

to your /etc/hosts. (Notice that 192.168.1.103 is my local IP)

Then I enter www.baidu.com in your browser's address table:


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 手機防盜頁面部分 點擊手機防盜,進行判斷,如果沒有設置密碼,顯示一個設置密碼的對話框,如果已經設置密碼了,彈出輸入密碼對話框 密碼保存在SharedPreferences中,數據取出進行判斷 自定義一個佈局文件,dialog_setup_password.xml 根佈局寬度不要充滿屏幕 內部控制項,寬 ...
  • UICollectionView @interface UICollectionView : UIScrollView UICollectionView 和UICollectionViewController類是iOS6新引進的API,用於展示集合視圖,佈局更加靈活,可實現多列佈局,用法類似UITa ...
  • IOS 圖片輪播實現原理的一種 圖片輪播所要實現的是在一個顯示區域內通過滑動來展示不同的圖片。 當圖片較少時我們可以採用在滾動視圖上添加很多張圖片來實現。 但是如果圖片數量較多時,一次性載入過多圖片會浪費記憶體,影響性能。 因此我們要採取適當地方法來實現圖片的輪播。 下麵我們只是簡單的介紹很多方法中的 ...
  • 1. Objc是一門編譯型語言,JAVA是解析型語言 編譯型語言:把做好的源程式全部編譯成二進位代碼的可運行程式。然後,可直接運行這個程式。 編譯型語言,執行速度快、效率高;依賴編譯器、跨平臺性差些。 解析型語言:解釋性語言在運行程式的時候才翻譯,每個語句都是執行的時候才翻譯。這樣解釋性語言每執行一 ...
  • 在我學習hive的時候,按照官網上的demo, // sc is an existing SparkContext. val sqlContext = new org.apache.spark.sql.hive.HiveContext(sc) sqlContext.sql("CREATE TABLE ...
  • 介紹 本篇文章主要從查看MySQL的啟動命令的代碼來詳細瞭解MySQL的啟動過程,內容多為概念知識;理解MySQL的啟動原理對熟悉MySQL至關重要,啟動mysql服務有三種方式分別是:mysql.sever,mysqld,mysqld_safe。 my.cnf mysql.server 預設的my ...
  • Knowledge Dependence:閱讀文本前,你需要瞭解基本的關係型資料庫與非關係型(NoSQL)資料庫的概念和區別,以及 MongoDB(Mongoose)的簡單實踐。 ​ 這兩三年來,伴隨著大數據(Big Data)的空前火熱,無論是在工程界還是科研界,非關係型資料庫(NoSQL)都已經 ...
  • 實驗環境:Ubnuntu 64位(推薦使用14.04)+Xshell 阿裡雲現在提供的雲伺服器很好用的,用來編譯內核性能也不錯。本文介紹最基本的內核編譯方法,為了方便,所有操作均在root用戶下進行。 如果不是root用戶可以使用su命令切換到root用戶。 註:使用xshell的時候最好把這一項給 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...