diff options
| author | Renato Westphal <renato@opensourcerouting.org> | 2019-08-03 22:02:37 -0300 | 
|---|---|---|
| committer | Olivier Dugeon <olivier.dugeon@orange.com> | 2020-04-30 12:15:47 +0200 | 
| commit | 26f6acafc369f1c126870b4282d5e252cc830f26 (patch) | |
| tree | a61a225ed9eddcd972abf6216e533606e559789c /isisd/isis_errors.c | |
| parent | 8f6c893629f609c2313150ef9ceaecd8125a3357 (diff) | |
isisd: add support for segment routing
This is an implementation of the IS-IS SR draft [1] for FRR.
The following features are supported:
* IPv4 and IPv6 Prefix-SIDs;
* IPv4 and IPv6 Adj-SIDs and LAN-Adj-SIDs;
* Index and absolute labels;
* The no-php and explicit-null Prefix-SID flags;
* Full integration with the Label Manager.
Known limitations:
* No support for Anycast-SIDs;
* No support for the SID/Label Binding TLV (required for LDP interop).
* No support for persistent Adj-SIDs;
* No support for multiple SRGBs.
[1] draft-ietf-isis-segment-routing-extensions-25
Signed-off-by: Olivier Dugeon <olivier.dugeon@orange.com>
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
Diffstat (limited to 'isisd/isis_errors.c')
| -rw-r--r-- | isisd/isis_errors.c | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/isisd/isis_errors.c b/isisd/isis_errors.c index 755e70dbf6..7530d0b966 100644 --- a/isisd/isis_errors.c +++ b/isisd/isis_errors.c @@ -38,6 +38,12 @@ static struct log_ref ferr_isis_err[] = {  		.suggestion = "Ensure configuration is correct"  	},  	{ +		.code = EC_ISIS_SID_OVERFLOW, +		.title = "SID index overflow", +		.description = "Isis has detected that a SID index falls outside of its associated SRGB range", +		.suggestion = "Configure a larger SRGB" +	}, +	{  		.code = END_FERR,  	}  };  | 
