segment routing是多久提出来的
时间: 2023-08-29 18:02:42 浏览: 246
Segment Routing(分段路由)是由思科公司在2012年提出的一种新的路由技术。这项技术旨在简化计算机网络的路由过程,提供更高效的数据包传输和灵活的网络管理。
传统的路由协议需要在数据包传输时进行多次的转发决策,这会导致网络的延迟增加并增加了网络设备的负载。而Segment Routing则采用了一种新的方法,它将整个网络路径划分为一系列的分段(segments),并为每个分段分配一个标识符。通过在数据包头部中包含这些分段标识符,网络设备可以根据事先定义好的路由策略,直接将数据包按照指定的路径转发,无需再进行多次的转发决策,从而减少了网络延迟和设备负载。
Segment Routing的提出,为网络管理带来了更大的灵活性。通过使用Segment Routing,网络管理员可以根据实际需求随时更改网络路径,而无需麻烦地重新配置网络设备。此外,Segment Routing还可以提供更好的流量工程和负载均衡功能,从而优化网络性能和资源利用。
总结来说,Segment Routing是由思科公司在2012年提出的一项新的路由技术。它通过将整个网络路径划分为分段,为每个分段分配标识符,并在数据包头部中包含这些标识符,实现了高效的数据包传输和灵活的网络管理。这项技术的出现为计算机网络带来了更高的性能和管理的便利性。
相关问题
segment routing
### Segment Routing Overview
Segment Routing (SR) is a source-routing paradigm designed to simplify traffic engineering within computer networks. In SR, paths through the network are defined by imposing segments on packets at their origin point[^4]. Each segment represents either an adjacency or a node in the path from sender to receiver.
#### Key Concepts of Segment Routing
- **Segments**: These can be thought as instructions given to routers about how data should travel across specific parts of the network.
- **SID (Segment Identifier)**: A unique identifier assigned to each segment which helps routers understand what action needs to take place when processing this particular part of the route[^5].
- **Source Routing**: The decision-making process regarding the exact path taken occurs primarily at the ingress router rather than intermediate nodes along the way[^6].
```python
def send_packet_with_segment_routing(packet, sids):
"""
Simulate sending a packet using segment routing
:param packet: Data payload being sent over network
:param sids: List of SIDs defining the explicit path
"""
current_hop = 0
while sids:
next_sid = sids.pop(0)
forward_to_next_router(next_sid, packet)
current_hop += 1
def forward_to_next_router(sid, packet):
# Logic for forwarding based on SID goes here...
pass
```
In comparison with traditional bridging methods mentioned earlier where there might exist certain limitations such as increased latencies due to overlays[^2], segment routing offers more efficient ways to manage traffic flows directly without introducing additional layers between endpoints.
ip6segmentrouting是什么
IPv6 Segment Routing是一种基于IPv6的路由技术,它利用IPv6数据包的扩展头部来标识路由路径。Segment Routing可以使网络更加灵活和可编程,因为它允许网络管理员将特定的路径指定为数据包的路由路径,从而提高网络的性能和可管理性。此外,IPv6 Segment Routing还可以提供更好的网络安全性,并减少了路由器的复杂性和开销。
阅读全文
相关推荐

















