LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 01-07-2008, 04:11 PM   #1
kkerby
LQ Newbie
 
Registered: Jan 2008
Posts: 2

Rep: Reputation: 0
Linux version RFC compliance list (where?)


Could you tell me how to figure out which RFCs are supported by a given version of Linux?

If possible, I'd like the answer to this general question, but in case there is no answer, here's my specific need.

I have linux version 2.6.16.18, I'm an IPv6 developer (kinda new at it). I want to know whether, for example, RFC 1981 is supported (this is the IPv6 version of Path MTU Discovery). I actually have a list of RFCs I want to know about. I've looked at the IPv6 HOW-TO, I've searched through this site, I've googled the web in general, I've looked at the Linux Documentation Project site, and I can't seem to find a comprehensive list of which RFCs are supported in which versions of linux. I know it's got to be out there somewhere. It will take me a long time if I need to read the kernel code to figure out whether, for example, 2.6.16.18 supports the older version RFC 2463 ICMPv6 or whether it supports the newer RFC 4443 ICMPv6. Well, actually, that one is probably pretty easy to answer because 4443's date is later than 2.6.16.18's date. But you see what I mean.

So, I'm really asking for a pointer to a doc somewhere? Or a site that lists all the RFCs in Linux, to search? Please? and thank you for any help you can provide, even partial. Just in case there's actually no comprehensive doc but you have personal knowledge of a particular RFC compliance, here's the list of RFCs I'm interested in:
RFC 1981 Path MTU Discovery
RFC 3315 DHCPv6 (I'm pretty sure the answer here is NOT in linux yet but you can get software from fedorahosted.org that you can install.)
RFC 2710 Multicast Listener Discovery
RFC 4193 Unique IPv6 Local Address
RFC 4007 IPv6 Scoped Address Architecture

Here are ones I'm pretty sure ARE in linux 2.6.16.18 -- I am just assuming that all of the following are supported, based on the chart in the IPv6 HOW-TO, although it's a bit of a stretch because they are NOT listed by number:
2460: IPv6
2461: Neighbor Discovery
2462: IPv6 over Ethernet
2463: ICMPv6 (probably not the newer 4443)
3513: IPv6 Addressing Architecture (probably not the newer 4291)

Thanks again for any help you can give me to figure out HOW to figure this out!
Kathy
 
Old 01-15-2008, 03:34 PM   #2
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Moved: Requested by OP
 
Old 01-17-2008, 05:50 AM   #3
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
About where and how, not what.

Quote:
Originally Posted by kkerby
So, I'm really asking for a pointer to a doc somewhere? Or a site that lists all the RFCs in Linux, to search?
It's all in how you do research, what you need to do is enhance your search-fu. On the 'net \"RFC 1981\" is pretty specific and shouldn't yield too much false positives. The other things you have to know is what a certain RFC applies to (kernel or userland), where the most traffic on the subject is and where it ends up. For Linux (the kernel) that'll be the Linux Kernel mailing list aka LKML which ends up in GIT if accepted. Whatever comes out of GIT ends up in your local copy of the kernel source so you can grep the changelog. So if you know it's in-kernel and about RFC 1981 you could narrow it down and use "site:kernel.org +"RFC 1981"" (watch inner quotes) with your favourite searchengine:

RFC 1981 Path MTU Discovery

Quote:
Originally Posted by kkerby
RFC 3315 DHCPv6 (I'm pretty sure the answer here is NOT in linux yet but you can get software from fedorahosted.org that you can install.)
True. Linux (kernel) only has to provide IPv6. Something-over-IPv6 AFAIK is the "problem" of the "protocol owner", in this case upstream DHCP client / daemon SW providers.

Quote:
Originally Posted by kkerby
RFC 2710 Multicast Listener Discovery
Linux kernels appear to support MLDv2 from version 2.4.22 but "fixed" from 2.6.6 on.

RFC 4193 Unique IPv6 Local Address

RFC 4007 IPv6 Scoped Address Architecture

Last edited by unSpawn; 01-17-2008 at 05:51 AM.
 
1 members found this post helpful.
Old 01-17-2008, 01:56 PM   #4
kkerby
LQ Newbie
 
Registered: Jan 2008
Posts: 2

Original Poster
Rep: Reputation: 0
Thank you, unSpawn, the hint to search only the site kernel.org was very helpful.

It would be a foolproof search method if the developers always mentioned the RFC they were implementing, but apparently they don't. It is still a hit-or-miss guess after a fair amount of code-reading as to when the RFC was actually implemented. The Path MTU Discovery is a good example. The RFC 1981 is mentioned in a comment on a bugfix in version 2.6.16-rc1, but the code was in earlier versions and never mentioned RFC 1981.

Nonetheless, I really do appreciate the help; with it I was able to find out a lot more info. I am fairly new to open-source codebases and I just need to readjust my expectations for documentation (as in, "the code is the documentation -- if you want to know whether a particular RFC is implemented, first read the RFC then read the code" :-) )
 
Old 01-17-2008, 03:35 PM   #5
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
Come to think of it there also are a few consortia that do Linux (kernel) compliance tests. Maybe those published results or the tests themselves could help you assess if something is implemented or not.
 
  


Reply

Tags
documentation, ipv6, linux, version



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Agile Expands Compliance, Product Portfolio, Product Collaboration and Quality Management Capabilities in Latest Version of Leading PLM Solution LXer Syndicated Linux News 0 12-13-2005 08:31 AM
Does anyone know if Linux TCP/IP stacks support RFC 3927 rstewart Linux - Networking 8 08-15-2005 11:41 AM
What is RFC ..... emailssent Linux - Newbie 1 09-28-2004 02:12 AM
Linux with RFC 2217 kalghatgi Linux - Networking 0 04-12-2004 09:28 AM
Boot list...old version james3mg Linux - Newbie 1 07-09-2003 03:44 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 11:30 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration