Questions tagged [ietf]

17 questions
6
votes
1 answer

Angular using # in URLS

I'm currently working on a URL parser that formats and corrects relative links. I designate some characters to be special and included is "#". I found that this becomes an issue when I'm processing pages that are developed with Angular, because…
labiblioteca4
  • 63
  • 1
  • 1
  • 3
3
votes
1 answer

Does the IETF publish versions RFCs that include errata?

When reading an RFC published by the IETF, it's hard to know what content has been corrected without explicitly checking the errata. For example, in RFC 7049 Section 2.4.2, the following correction exists in the errata: diff --git a/rfc7049.txt…
adyavanapalli
  • 490
  • 6
  • 17
2
votes
1 answer

Python 3 XChaCha20 test vectors work for encryption but decryption stage fails

I use the following vectors to test XChaCha20 encryption with AEAD by Poly1305 in…
gavery
  • 25
  • 6
1
vote
1 answer

Where is it standardized that a HTTP response header should (must?) be separated from the body with CRLFCRLF?

According to this, a HTTP response's header is separated from the body using CRLFCRLF. However, reading through rfc9110, I did not find anything about that. Where is it standardized that this should be the case? If it is not, how is one supposed to…
Itération 122442
  • 2,644
  • 2
  • 27
  • 73
1
vote
1 answer

JWTs: Reproducing the signing example from RFC7515

For my own understanding of how verifying the signature of a JWT works I tried reimplementing the example given in appendix A.2 of RFC7515, the RFC that defines the JSON web signature (or JWS). …
1
vote
0 answers

MIB- access to data of base table in table augmentation

I am doing some research about different aspects of SMIv2 and MIB writing. I have a given MIB file which has a table T1 and want to define a new table T2 at other MIB file that holds all columns of T1 and has some additional columns too. I found…
Jafar Gh
  • 137
  • 2
  • 12
1
vote
0 answers

Defining objects using OBJECT-TYPE and using in 2 different applications

I am writing and implementing some MIB files. I want to implement a bunch of objects in a Base-MIB and reuse it in multiple projects. One way is to copy Base-MIB for each project and then import mibs of each project to corresponding Base-MIB (as…
Jafar Gh
  • 137
  • 2
  • 12
1
vote
0 answers

Defining OBJECT-TYPE using syntax of another object

I am new in SNMP and writing MIBs. I want to define OBJECT-TYPE but using syntax and other properties of another Object. I searched about and find REFERENCE property, but due to this link section 19, this prop. is only contains textual info and you…
Jafar Gh
  • 137
  • 2
  • 12
1
vote
0 answers

ipaddress doesn't properly tag reserved IP in 192.0.0.0/24?

I'm trying to setup a script using ipaddress module in python 3.x. I'm looking for making a parser looking for some info on public IP. When checking the IP, I'm finding that ipaddress is not tagging as reserved the IP range 192.0.0.0/24. From IETF…
Felkor
  • 11
  • 1
1
vote
2 answers

Have any little-endian protocols been standardised with RFCs by the IETF?

Historically, network protocol RFCs have used big-endian (network order) fields. I am currently involved in the design of a new (UDP) protocol, which, one-day, might be standardised with an RFC. Would having little-endian fields be a problem with…
fadedbee
  • 42,671
  • 44
  • 178
  • 308
0
votes
1 answer

Does IETF recognize the IPFS URI format?

Does any part of the Internet Engineering Task Force recognize (even in draft form) the URI naming specification that IPFS is using (i.e. ipfs:// URIs)? I have looked for RFCs and not found any. There seems to be significant built support for IPFS…
William Entriken
  • 37,208
  • 23
  • 149
  • 195
0
votes
1 answer

Yang pattern not accepting regex containing ^ and $

Yang pattern does not accept valid Regex when it contains caret ^ or dollar $. The bellow pattern is valid on Regex validators, but when run inside a Yang pattern template in an is-types.yang file my application errors. However when i take off the ^…
0
votes
2 answers

What character can be used instead of / to separate URL path?

In a URL, according to this syntax, I want to use a different delimiter for separating path in a URL. For example: In this URL https://en.wikipedia.org/wiki/Uniform_Resource_Identifier#Generic_syntax, I want to separate…
Spam Me
  • 33
  • 4
0
votes
1 answer

How to use the Xquery function fn:parse-ietf-date with a Google timestamp?

It looks like this specific function chokes on the string which Google provides. For example: Saturday, 2 December 2017 at 15:00:32 UTC doesn't seem to parse, at least using the basex console with this function: > > xquery…
0
votes
1 answer

leaf name and type name can be same in yang

Below example is correct yang statement or not? it is valid by pyang but JNC is unable to process grouping TLId { leaf age { type Age; mandatory true; } } typedef Age { type string { pattern '[0-9][0-9]'; } } Please suggest
1
2