* [PATCH 01/05] ipv6: RFC4214 Support
@ 2007-11-07 1:16 Templin, Fred L
2007-11-07 17:31 ` Stephen Hemminger
2007-11-08 1:08 ` [PATCH 01/05] ipv6: RFC4214 Support (2) Templin, Fred L
0 siblings, 2 replies; 6+ messages in thread
From: Templin, Fred L @ 2007-11-07 1:16 UTC (permalink / raw)
To: netdev
From: Fred L. Templin <fred.l.templin@boeing.com>
This is experimental support for the Intra-Site Automatic
Tunnel Addressing Protocol (ISATAP) per RFC4214. It uses
the SIT module, and is configured using the unmodified
"ip" utility with device names beginning with: "isatap".
The following diffs are specific to the Linux 2.6.23
kernel distribution.
Signed-off-by: Fred L. Templin <fred.l.templin@boeing.com>
---
--- linux-2.6.23/include/linux/if.h.orig 2007-10-29
09:22:26.000000000 -0700
+++ linux-2.6.23/include/linux/if.h 2007-10-26 11:00:06.000000000
-0700
@@ -61,6 +61,9 @@
#define IFF_MASTER_ALB 0x10 /* bonding master, balance-alb.
*/
#define IFF_BONDING 0x20 /* bonding master or slave
*/
#define IFF_SLAVE_NEEDARP 0x40 /* need ARPs for validation
*/
+#if defined(CONFIG_IPV6_ISATAP)
+#define IFF_ISATAP 0x80 /* ISATAP interface (RFC4214)
*/
+#endif
#define IF_GET_IFACE 0x0001 /* for querying only */
#define IF_GET_PROTO 0x0002
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 01/05] ipv6: RFC4214 Support
2007-11-07 1:16 [PATCH 01/05] ipv6: RFC4214 Support Templin, Fred L
@ 2007-11-07 17:31 ` Stephen Hemminger
2007-11-07 17:33 ` Templin, Fred L
2007-11-08 1:08 ` [PATCH 01/05] ipv6: RFC4214 Support (2) Templin, Fred L
1 sibling, 1 reply; 6+ messages in thread
From: Stephen Hemminger @ 2007-11-07 17:31 UTC (permalink / raw)
To: Templin, Fred L; +Cc: netdev
On Tue, 6 Nov 2007 17:16:01 -0800
"Templin, Fred L" <Fred.L.Templin@Boeing.com> wrote:
> From: Fred L. Templin <fred.l.templin@boeing.com>
>
> This is experimental support for the Intra-Site Automatic
> Tunnel Addressing Protocol (ISATAP) per RFC4214. It uses
> the SIT module, and is configured using the unmodified
> "ip" utility with device names beginning with: "isatap".
>
> The following diffs are specific to the Linux 2.6.23
> kernel distribution.
>
> Signed-off-by: Fred L. Templin <fred.l.templin@boeing.com>
>
> ---
>
> --- linux-2.6.23/include/linux/if.h.orig 2007-10-29
> 09:22:26.000000000 -0700
> +++ linux-2.6.23/include/linux/if.h 2007-10-26 11:00:06.000000000
> -0700
> @@ -61,6 +61,9 @@
> #define IFF_MASTER_ALB 0x10 /* bonding master, balance-alb.
> */
> #define IFF_BONDING 0x20 /* bonding master or slave
> */
> #define IFF_SLAVE_NEEDARP 0x40 /* need ARPs for validation
> */
> +#if defined(CONFIG_IPV6_ISATAP)
> +#define IFF_ISATAP 0x80 /* ISATAP interface (RFC4214)
> */
> +#endif
>
Don't make this conditional.. You always want the number assigned
and available, plus this file is used from user space where kernel
configuration is unknown or irrelevant.
--
Stephen Hemminger <shemminger@linux-foundation.org>
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [PATCH 01/05] ipv6: RFC4214 Support
2007-11-07 17:31 ` Stephen Hemminger
@ 2007-11-07 17:33 ` Templin, Fred L
0 siblings, 0 replies; 6+ messages in thread
From: Templin, Fred L @ 2007-11-07 17:33 UTC (permalink / raw)
To: Stephen Hemminger; +Cc: netdev
Thanks, and will fix.
Fred
> -----Original Message-----
> From: Stephen Hemminger [mailto:shemminger@linux-foundation.org]
> Sent: Wednesday, November 07, 2007 9:31 AM
> To: Templin, Fred L
> Cc: netdev@vger.kernel.org
> Subject: Re: [PATCH 01/05] ipv6: RFC4214 Support
>
> On Tue, 6 Nov 2007 17:16:01 -0800
> "Templin, Fred L" <Fred.L.Templin@Boeing.com> wrote:
>
> > From: Fred L. Templin <fred.l.templin@boeing.com>
> >
> > This is experimental support for the Intra-Site Automatic
> > Tunnel Addressing Protocol (ISATAP) per RFC4214. It uses
> > the SIT module, and is configured using the unmodified
> > "ip" utility with device names beginning with: "isatap".
> >
> > The following diffs are specific to the Linux 2.6.23
> > kernel distribution.
> >
> > Signed-off-by: Fred L. Templin <fred.l.templin@boeing.com>
> >
> > ---
> >
> > --- linux-2.6.23/include/linux/if.h.orig 2007-10-29
> > 09:22:26.000000000 -0700
> > +++ linux-2.6.23/include/linux/if.h 2007-10-26 11:00:06.000000000
> > -0700
> > @@ -61,6 +61,9 @@
> > #define IFF_MASTER_ALB 0x10 /* bonding
> master, balance-alb.
> > */
> > #define IFF_BONDING 0x20 /* bonding
> master or slave
> > */
> > #define IFF_SLAVE_NEEDARP 0x40 /* need ARPs
> for validation
> > */
> > +#if defined(CONFIG_IPV6_ISATAP)
> > +#define IFF_ISATAP 0x80 /* ISATAP interface (RFC4214)
> > */
> > +#endif
> >
>
> Don't make this conditional.. You always want the number assigned
> and available, plus this file is used from user space where kernel
> configuration is unknown or irrelevant.
>
> --
> Stephen Hemminger <shemminger@linux-foundation.org>
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 01/05] ipv6: RFC4214 Support (2)
2007-11-07 1:16 [PATCH 01/05] ipv6: RFC4214 Support Templin, Fred L
2007-11-07 17:31 ` Stephen Hemminger
@ 2007-11-08 1:08 ` Templin, Fred L
2007-11-08 1:12 ` Stephen Hemminger
2007-11-08 1:14 ` Templin, Fred L
1 sibling, 2 replies; 6+ messages in thread
From: Templin, Fred L @ 2007-11-08 1:08 UTC (permalink / raw)
To: netdev
From: Fred L. Templin <fred.l.templin@boeing.com>
This is experimental support for the Intra-Site Automatic
Tunnel Addressing Protocol (ISATAP) per RFC4214. It uses
the SIT module, and is configured using the unmodified
"ip" utility with device names beginning with: "isatap".
The following diffs are specific to the Linux 2.6.23
kernel distribution.
Signed-off-by: Fred L. Templin <fred.l.templin@boeing.com>
---
--- linux-2.6.23/include/linux/if.h.orig 2007-10-29
09:22:26.000000000 -0700
+++ linux-2.6.23/include/linux/if.h 2007-11-07 13:48:08.000000000
-0800
@@ -61,6 +61,7 @@
#define IFF_MASTER_ALB 0x10 /* bonding master, balance-alb.
*/
#define IFF_BONDING 0x20 /* bonding master or slave
*/
#define IFF_SLAVE_NEEDARP 0x40 /* need ARPs for validation
*/
+#define IFF_ISATAP 0x80 /* ISATAP interface (RFC4214)
*/
#define IF_GET_IFACE 0x0001 /* for querying only */
#define IF_GET_PROTO 0x0002
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 01/05] ipv6: RFC4214 Support (2)
2007-11-08 1:08 ` [PATCH 01/05] ipv6: RFC4214 Support (2) Templin, Fred L
@ 2007-11-08 1:12 ` Stephen Hemminger
2007-11-08 1:14 ` Templin, Fred L
1 sibling, 0 replies; 6+ messages in thread
From: Stephen Hemminger @ 2007-11-08 1:12 UTC (permalink / raw)
To: Templin, Fred L; +Cc: netdev
On Wed, 7 Nov 2007 17:08:50 -0800
"Templin, Fred L" <Fred.L.Templin@boeing.com> wrote:
>
> From: Fred L. Templin <fred.l.templin@boeing.com>
>
> This is experimental support for the Intra-Site Automatic
> Tunnel Addressing Protocol (ISATAP) per RFC4214. It uses
> the SIT module, and is configured using the unmodified
> "ip" utility with device names beginning with: "isatap".
>
> The following diffs are specific to the Linux 2.6.23
> kernel distribution.
Please submit all patches against the latest kernel (2.6.24-rc2 now).
Otherwise, it gets hard to do integration.
> ---
>
> --- linux-2.6.23/include/linux/if.h.orig 2007-10-29
> 09:22:26.000000000 -0700
> +++ linux-2.6.23/include/linux/if.h 2007-11-07 13:48:08.000000000
> -0800
> @@ -61,6 +61,7 @@
> #define IFF_MASTER_ALB 0x10 /* bonding master, balance-alb.
> */
> #define IFF_BONDING 0x20 /* bonding master or slave
> */
> #define IFF_SLAVE_NEEDARP 0x40 /* need ARPs for validation
> */
> +#define IFF_ISATAP 0x80 /* ISATAP interface (RFC4214)
> */
Your mail client is wrapping the patch.
--
Stephen Hemminger <shemminger@linux-foundation.org>
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [PATCH 01/05] ipv6: RFC4214 Support (2)
2007-11-08 1:08 ` [PATCH 01/05] ipv6: RFC4214 Support (2) Templin, Fred L
2007-11-08 1:12 ` Stephen Hemminger
@ 2007-11-08 1:14 ` Templin, Fred L
1 sibling, 0 replies; 6+ messages in thread
From: Templin, Fred L @ 2007-11-08 1:14 UTC (permalink / raw)
To: Templin, Fred L, netdev
I apologize for this, but it appears that my mailer is still
inserting line breaks where it shouldn't; please disregard.
Can anyone advise on how to configure Microsoft Office so
that the line breaks do not occur?
Thanks - Fred
fred.l.templin@boeing.com
> -----Original Message-----
> From: Templin, Fred L
> Sent: Wednesday, November 07, 2007 5:09 PM
> To: netdev@vger.kernel.org
> Subject: [PATCH 01/05] ipv6: RFC4214 Support (2)
>
>
> From: Fred L. Templin <fred.l.templin@boeing.com>
>
> This is experimental support for the Intra-Site Automatic
> Tunnel Addressing Protocol (ISATAP) per RFC4214. It uses
> the SIT module, and is configured using the unmodified
> "ip" utility with device names beginning with: "isatap".
>
> The following diffs are specific to the Linux 2.6.23
> kernel distribution.
>
> Signed-off-by: Fred L. Templin <fred.l.templin@boeing.com>
>
> ---
>
> --- linux-2.6.23/include/linux/if.h.orig 2007-10-29
> 09:22:26.000000000 -0700
> +++ linux-2.6.23/include/linux/if.h 2007-11-07 13:48:08.000000000
> -0800
> @@ -61,6 +61,7 @@
> #define IFF_MASTER_ALB 0x10 /* bonding master,
balance-alb.
> */
> #define IFF_BONDING 0x20 /* bonding master or slave
> */
> #define IFF_SLAVE_NEEDARP 0x40 /* need ARPs for
validation
> */
> +#define IFF_ISATAP 0x80 /* ISATAP interface (RFC4214)
> */
>
> #define IF_GET_IFACE 0x0001 /* for querying only */
> #define IF_GET_PROTO 0x0002
> -
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2007-11-08 1:14 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-07 1:16 [PATCH 01/05] ipv6: RFC4214 Support Templin, Fred L
2007-11-07 17:31 ` Stephen Hemminger
2007-11-07 17:33 ` Templin, Fred L
2007-11-08 1:08 ` [PATCH 01/05] ipv6: RFC4214 Support (2) Templin, Fred L
2007-11-08 1:12 ` Stephen Hemminger
2007-11-08 1:14 ` Templin, Fred L
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox