優選最高的
weight
值,這個是
cisco
的私有屬性,優選選擇最高的
weight
,從本地產生預設是
32768
,從別處獲取預設是0在
r4上發現去
2.2.2.0/24
走的下一跳是
24.1.1.2
,前面已經說過其原因,可以看到這裡兩條路由的
weight
值都為0
,因為是從別處獲取的路由,下面通過修改
weight
來更改下一跳
r4#sh ip bgp
bgp table version is 24, local router id is 4.4.4.4
network next hop metric locprf weight path
*> 2.2.2.0/24 24.1.1.2 0 0 2 i
* i 5.5.5.5 0 100 0 2 i
r4(config)#ip prefix-list lhl permit 2.2.2.0/24
r4(config)#route-map lhl permit 10
r4(config-route-map)#match ip address prefix-list lhl
r4(config-route-map)#set weight 100
r4(config-route-map)#route-map lhl permit 20
r4(config-route-map)#router bgp 456
r4(config-router)#neighbor 24.1.1.2 route-map lhl in
r4#clear ip bgp * s
r4#sh ip bgp
bgp table version is 25, local router id is 4.4.4.4
network next hop metric locprf weight path
*> 2.2.2.0/24 24.1.1.2 0 100 2 i
* i 5.5.5.5 0 100 0 2 i
優選最高的local preference值
優選最高的 local preference 值,因為 local preference 值主要是影響本 as的路由選路,值越高,越優先 r4 sh ip bgp bgp table version is 22,local router id is 4.4.4.4 network next hop ...
width和height對weight的影響
由於方向要麼是豎直要麼是水平,以豎直為例來分開說明三個屬性的互相影響.假設有乙個豎直排列的線性布局,其中有兩個元件,a和b 1.若要a和b嚴格按照weight比例分配空間,則必須設定兩個的height都為0或者都為fillparent.2.若其中有乙個為wrapcontent,且weight設為0,...
神經網路的引數(Weight)
神經網路中常用的生成隨機數 陣列的函式 解釋tf.random normal 生成正態分佈隨機數 tf.truncated normal 生成去掉過大偏離點 超過偏差 的正太分布的隨機數 tf.random uniform 生成平均分布的隨機數 tf.zeros 全0陣列,tf.zeros 3,2 ...