把介面加入ethtrunk
『壹』 Cisco packet tracer路由器怎麼添加Eth-Trunk介面
eth-trunk介面?2層口嗎?
2811用這個
『貳』 聯通ETH光纖貓與路由器如何連接
聯通ETH光纖貓終端標識解釋:pwr 電源 gpon光口eth1,eth2, 網口 FXS 語音。
Eth-Trunk介面是一種可以動態創建的介面,該類型介面可以綁定若干物理的乙太網介面作為一個邏輯介面使用。加入到Eth-Trunk介面的乙太網介面稱為成員介面,用戶只需對Eth-Trunk介面進行配置,對這些配置最終會映射到成員介面上。Eth-Trunk介面有路由模式和交換模式之分。路由模式的Eth-Trunk介面與路由模式的乙太網介面類似,可以配置IP地址,運行各種路由協議、MPLS VPN等多種業務;交換模式的Eth-Trunk介面與交換模式乙太網介面類似,可以加入VLAN,運行STP等協議。
Eth-Trunk介面應用特點有拓展介面帶寬,增加鏈路可靠性以及流量的負載分擔。
建議你可以咨詢PC機電腦組網專業人士相關問題,以下圖片盡供參考:
具體以當地聯通客服答復為准。
『叄』 寬頻光纖貓上的ETH介面怎麼用
ETH 即 EtherNet,乙太網,IEEE制定的IEEE 802.3標准給出了乙太網的技術標准,就理解為一種網路接入協議,或者網路接入口鏈基清的標准,再或者直接叫做網口。
『肆』 寬頻光纖貓上的ETH介面怎麼用
1、首先我們點擊開始——控制面板。
『伍』 接入層交換機與核心交換機兩條鏈路連接應如何配置
1、首先進入系統視圖 system-view 。
『陸』 伺服器bonding與交換機Eth-trunk組網方案
伺服器側通過bonding將兩塊物理網卡抽象成一個邏輯上的網卡,交換機側配置Eth-Trunk來實現網路帶寬擴容或高可用。
交換機配置略過(大概就是先清空兩個介面配置,創建Eth-Trunk,然後將介面加入Eth-Trunk,配置Eth-Trunk)
伺服器配置bonding:
在伺服器上起3個iperf3 server( iperf3 -s -p 1234 & ),用3個iperf3 client( iperf3 -c ip -p 1234 -t 30 -b 10G )同時向這3個iperf3 server發起請求,通過nload觀察伺服器上的流量情況是否符合預期。
註:需根據具體的業務場景來選擇合適的bonding模式
『柒』 華為PTN3900設備傳輸鏈路聚合組怎麼配置
在兩台S-switch 設備上配置靜態LACP 模式鏈路聚合組,提高兩設備之
間的帶寬與可靠性,具體要求如下:
l M 條活動鏈路具有負載分擔的能力。
l 兩設備間的鏈路具有N 條冗餘備份鏈路,當活動鏈路出現故障鏈路時,備份鏈路替
代故障鏈路,保持數據傳輸的可靠性。
配置思路
採用如下的思路配置靜態LACP 模式鏈路聚合:
1. 在S-switch 設備上創建Eth-Trunk,配置Eth-Trunk 為靜態LACP 模式。
2. 將成員介面加入Eth-Trunk。
3. 配置介面Eth-Trunk 處理BPDU 報文。
4. 配置系統優先順序確定主動端。
5. 配置活動介面上限閾值。
6. 配置介面優先順序確定活動鏈路。
數據准備
為完成此配置例,需准備如下的數據:
l 兩端S-switch 設備鏈路聚合組編號。
l S-switch-A 系統優先順序。
l 活動介面上限閾值。
l 活動介面LACP 優先順序。
配置步驟
1. 創建編號為1 的Eth-Trunk,配置它的工作模式為靜態LACP 模式
# 配置S-switch-A。
<Quidway> system-view
[Quidway] sysname S-switch-A
[S-switch-A] interface eth-trunk 1
[S-switch-A-Eth-Trunk1] mode lacp-static
[S-switch-A-Eth-Trunk1] quit
# 配置S-switch-B。
<Quidway> system-view
[Quidway] sysname S-switch-B
[S-switch-B] interface eth-trunk 1
[S-switch-B-Eth-Trunk1] mode lacp-static
[S-switch-B-Eth-Trunk1] quit
2. 將成員介面加入Eth-Trunk
# 配置S-switch-A。
[S-switch-A] interface ethernet 0/0/1
[S-switch-A-Ethernet0/0/1] eth-trunk 1
[S-switch-A-Ethernet0/0/1] quit
[S-switch-A] interface ethernet 0/0/2
[S-switch-A-Ethernet0/0/2] eth-trunk 1
[S-switch-A-Ethernet0/0/2] quit
[S-switch-A] interface ethernet 0/0/3
[S-switch-A-Ethernet0/0/3] eth-trunk 1
[S-switch-A-Ethernet0/0/3] quit
# 配置S-switch-B。
[S-switch-B] interface ethernet 0/0/1
[S-switch-B-Ethernet0/0/1] eth-trunk 1
[S-switch-B-Ethernet0/0/1] quit
[S-switch-B] interface ethernet 0/0/2
[S-switch-B-Ethernet0/0/2] eth-trunk 1
[S-switch-B-Ethernet0/0/2] quit
[S-switch-B] interface ethernet 0/0/3
[S-switch-B-Ethernet0/0/3] eth-trunk 1
[S-switch-B-Ethernet0/0/3] quit
3. 配置介面Eth-Trunk 處理BPDU 報文
# 配置S-switch-A。
[S-switch-A] interface eth-trunk 1
[S-switch-A-Eth-Trunk1] bp enable
[S-switch-A-Eth-Trunk1] quit
# 配置S-switch-B
[S-switch-B] interface eth-trunk 1
[S-switch-B-Eth-Trunk1] bp enable
[S-switch-B-Eth-Trunk1] quit
4. 在S-switch-A 上配置系統優先順序為100,使其成為LACP 主動端
[S-switch-A] lacp priority 100
5. 在S-switch-A 上配置活動介面上限閾值M 為2
[S-switch-A] interface eth-trunk 1
[S-switch-A-Eth-Trunk1] max bandwidth-affected-linknumber 2
[S-switch-A-Eth-Trunk1] quit
2 LACP 配置
說明
由於S-switch-A 為主動端,所以S-switch-B 不需要配置活動介面上限閾值,步驟 6 中配置接
口優先順序同樣只需要在主動端S-switch-A 上配置即可。
6. 在S-switch-A 上配置介面優先順序確定活動鏈路
[S-switch-A] interface ethernet 0/0/1
[S-switch-A-Ethernet0/0/1] lacp priority 100
[S-switch-A-Ethernet0/0/1] quit
[S-switch-A] interface ethernet 0/0/2
[S-switch-A-Ethernet0/0/2] lacp priority 100
[S-switch-A-Ethernet0/0/2] quit
7. 驗證配置結果
# 查看各S-switch 設備的Eth-Trunk 信息,查看鏈路是否協商成功。
[S-switch-A] display eth-trunk 1
Eth-Trunk1's state information is:
Local:
LAG ID: 1 WorkingMode: STATIC
Preempt Delay: Disabled Hash arithmetic: According to MAC
System Priority: 100 System ID: 0077-7777-7777
Least Active-linknumber: 1 Max Bandwidth-affected-linknumber: 2
Operate status: up Number Of Up Port In Trunk: 2
--------------------------------------------------------------------------------
ActorPortName Status PortType PortPri PortNo PortKey PortState Weight
Ethernet0/0/1 Selected 100M 100 1 289 11111100 1
Ethernet0/0/2 Selected 100M 100 2 289 11111100 1
Ethernet0/0/3 Unselect 100M 32768 3 289 11100000 1
Partner:
--------------------------------------------------------------------------------
ActorPortName SysPri SystemID PortPri PortNo PortKey PortState
Ethernet0/0/1 32768 0001-0168-0182 32768 1 289 11111100
Ethernet0/0/2 32768 0001-0168-0182 32768 2 289 11111100
Ethernet0/0/3 32768 0001-0168-0182 32768 3 289 11100000
[S-switch-B] display eth-trunk 1
Eth-Trunk1's state information is:
Local:
LAG ID: 1 WorkingMode: STATIC
Preempt Delay: Disabled Hash arithmetic: According to MAC
System Priority: 32768 System ID: 0001-0168-0182
Least Active-linknumber: 1 Max Bandwidth-affected-linknumber: 8
Operate status: up Number Of Up Port In Trunk: 2
--------------------------------------------------------------------------------
ActorPortName Status PortType PortPri PortNo PortKey PortState Weight
Ethernet0/0/1 Selected 100M 32768 1 289 11111100 1
Ethernet0/0/2 Selected 100M 32768 2 289 11111100 1
Ethernet0/0/3 Unselect 100M 32768 3 289 11100000 1
Partner:
--------------------------------------------------------------------------------
ActorPortName SysPri SystemID PortPri PortNo PortKey PortState
Ethernet0/0/1 100 0077-7777-7777 100 1 289 11111100
Ethernet0/0/2 100 0077-7777-7777 100 2 289 11111100
Ethernet0/0/3 100 0077-7777-7777 32768 3 289 11100000
通過以上顯示信息可以看到,S-switch-A 的系統優先順序為100,高於S-switch-B 的
系統優先順序。Eth-Trunk 的成員介面中Ethernet 0/0/1、Ethernet 0/0/2 成為活動接
口,處於「Selected」狀態,介面Ethernet 0/0/3 處於「Unselect」狀態,同時實現M
條鏈路的負載分擔和N 條鏈路的冗餘備份功能。
配置文件
l S-switch-A 的配置文件
#
sysname S-switch-A
#
lacp priority 100
#
interface Eth-Trunk1
bp enable
mode lacp-static
max bandwidth-affected-linknumber 2
#
interface Ethernet0/0/1
eth-trunk 1
lacp priority 100
#
interface Ethernet0/0/2
eth-trunk 1
lacp priority 100
#
interface Ethernet0/0/3
eth-trunk 1
#
return
l S-switch-B 的配置文件
#
sysname S-switch-B
#
interface Eth-Trunk1
bp enable
mode lacp-static
#
interface Ethernet0/0/1
eth-trunk 1
#
interface Ethernet0/0/2
eth-trunk 1
#
interface Ethernet0/0/3
eth-trunk 1
#
return
『捌』 關於三層交換機Eth-Trunk垮網段通信問題
老弟,既然是跨網通信肯定要用三層技術了,既然是三層技術怎麼會在LSW1和LSW2上開trank呢,那二層的技術。
如果想把那3根線全用上,可以起個Port-channel
int range gi 0/0/1 -3
channel-group 1 mode on/active
no switchport
ip add <你自己定>
no shutdown
回到config下面
ip routing
把默認路由都指到剛剛做的port-channel上就行了。
ip route 0.0.0.0 0.0.0.0 port-channel1
LSW1和LSW2上都這做就行了。
『玖』 華為S5700千兆的交換機,想做埠匯聚怎麼操作呢
之前有人配置過的話那麼你需要確認後面兩個埠的trunk信息是否被清除!!!如果不清除不能在添加命令好像是 int gig0/1 clear conf this
『拾』 華為5700交換機eth介面做什麼用的怎麼使用它
華為5700交換機eth可以作為管理口使用,交換機操作系統丟了 ,但是我可以通過eth口上傳操作系統文件,跟console口的功能是類似的。
華為交換機從網橋發展而來,屬於OSI第二層即數據鏈路層設備。它根據MAC地址定址,通過站表選擇路由,站表的建立和維護由CISCO思科交換機自動進行。
華為在美國、德國、瑞典、俄羅斯、印度以及中國的北京、上海和南京等地設立了多個研究所,近一半的員工從事著產品與解決方案的研發工作。
(10)把介面加入ethtrunk擴展閱讀
華為是全球領先的電信解決方案供應商。我們擁有熱誠的員工和強大的研發能力,快速響應客戶需求,提供端到端的客戶化產品、解決方案和服務,全力幫助客戶商業成功,並通過我們的共同努力,不斷豐富人們的溝通和生活。
華為產品和解決方案涵蓋移動(LTE/HSPA/WCDMA/EDGE/GPRS/GSM, CDMA2000 1xEV-DO/CDMA2000 1X, TD-SCDMA和WiMAX)
核心網(IMS, Mobile Softswitch, NGN)、網路(FTTx, xDSL, 光網路, 路由器和LAN Switch)、電信增值業務(IN, mobile data service, BOSS)和終端(UMTS/CDMA)等領域。