Displaying 8 results from an estimated 8 matches for "client_identifi".
Did you mean:
client_identifier
2015 Sep 12
2
pxelinux tries to load ldlinux.c32 from DHCP server, instead of next-server
...cc0ef7 100644
> --- a/core/fs/pxe/dhcp_option.c
> +++ b/core/fs/pxe/dhcp_option.c
> @@ -143,7 +143,6 @@ static const struct dhcp_options dhcp_opts[] = {
> {15, local_domain},
> {43, vendor_encaps},
> {52, option_overload},
> - {54, server},
> {61, client_identifier},
> {67, bootfile_name},
> {97, uuid_client_identifier},
Euh, could this be reviewed:
diff --git a/core/fs/pxe/dhcp_option.c b/core/fs/pxe/dhcp_option.c
index 8d93a6a..b82e944 100644
--- a/core/fs/pxe/dhcp_option.c
+++ b/core/fs/pxe/dhcp_option.c
@@ -143,8 +143,8 @@ static co...
2015 Sep 12
2
pxelinux tries to load ldlinux.c32 from DHCP server, instead of next-server
On Sat, Sep 12, 2015 at 7:08 AM, Gene Cumm <gene.cumm at gmail.com> wrote:
> On Sat, Sep 12, 2015 at 5:54 AM, Teun Docter
> <teun.docter at brightcomputing.com> wrote:
>> On 2015-09-12 04:58, Gene Cumm wrote:
>>>>
>>>> I've captured the following DHCP ACK:
>>>>
>>>> 10.141.20.1.bootps > 10.141.20.2.bootpc: [udp sum ok]
2015 Sep 12
0
pxelinux tries to load ldlinux.c32 from DHCP server, instead of next-server
...e/fs/pxe/dhcp_option.c
>> +++ b/core/fs/pxe/dhcp_option.c
>> @@ -143,7 +143,6 @@ static const struct dhcp_options dhcp_opts[] = {
>> {15, local_domain},
>> {43, vendor_encaps},
>> {52, option_overload},
>> - {54, server},
>> {61, client_identifier},
>> {67, bootfile_name},
>> {97, uuid_client_identifier},
>
> Euh, could this be reviewed:
>
> diff --git a/core/fs/pxe/dhcp_option.c b/core/fs/pxe/dhcp_option.c
> index 8d93a6a..b82e944 100644
> --- a/core/fs/pxe/dhcp_option.c
> +++ b/core/fs/pxe/dhc...
2016 Jan 07
2
Domain name search path use during PXE booting
...p - udata >= opt_len)
+ state = FINISH;
+
+ if (outp - DomainSearch >= sizeof(DomainSearch) - 1)
+ state = FINISH;
+ }
+ }
+}
+
struct dhcp_options {
int opt_num;
@@ -150,6 +284,7 @@ static const struct dhcp_options dhcp_op
{61, client_identifier},
{67, bootfile_name},
{97, uuid_client_identifier},
+ {119, domain_search},
{209, pxelinux_configfile},
{210, pxelinux_pathprefix},
{211, pxelinux_reboottime}
@@ -222,6 +357,7 @@ void parse_dhcp_options(const void *opti
* boot_file - boot file name
* DNSServers...
2015 Sep 12
0
pxelinux tries to load ldlinux.c32 from DHCP server, instead of next-server
...re/fs/pxe/dhcp_option.c
index 8d93a6a..5cc0ef7 100644
--- a/core/fs/pxe/dhcp_option.c
+++ b/core/fs/pxe/dhcp_option.c
@@ -143,7 +143,6 @@ static const struct dhcp_options dhcp_opts[] = {
{15, local_domain},
{43, vendor_encaps},
{52, option_overload},
- {54, server},
{61, client_identifier},
{67, bootfile_name},
{97, uuid_client_identifier},
2015 Sep 12
2
pxelinux tries to load ldlinux.c32 from DHCP server, instead of next-server
...e/fs/pxe/dhcp_option.c
>> +++ b/core/fs/pxe/dhcp_option.c
>> @@ -143,8 +143,8 @@ static const struct dhcp_options dhcp_opts[] = {
>> {15, local_domain},
>> {43, vendor_encaps},
>> {52, option_overload},
>> - {54, server},
>> {61, client_identifier},
>> + {66, tftpserver_name},
>> {67, bootfile_name},
>> {97, uuid_client_identifier},
>> {209, pxelinux_configfile},
>> @@ -215,7 +215,7 @@ void parse_dhcp_options(const void *option, int size, uint8_t opt_filter)
>> * information is pre...
2016 Jan 07
0
Domain name search path use during PXE booting
...e second byte of a pointer? What
if the pointer points after or before the buffer? What if we reach the
end of the data at a random point while reading a label?
>
> struct dhcp_options {
> int opt_num;
> @@ -150,6 +284,7 @@ static const struct dhcp_options dhcp_op
> {61, client_identifier},
> {67, bootfile_name},
> {97, uuid_client_identifier},
> + {119, domain_search},
> {209, pxelinux_configfile},
> {210, pxelinux_pathprefix},
> {211, pxelinux_reboottime}
> @@ -222,6 +357,7 @@ void parse_dhcp_options(const void *opti
> * bo...
2016 Jan 08
1
Domain name search path use during PXE booting
...gt; if the pointer points after or before the buffer? What if we reach the
> end of the data at a random point while reading a label?
>
>>
>> struct dhcp_options {
>> int opt_num;
>> @@ -150,6 +284,7 @@ static const struct dhcp_options dhcp_op
>> {61, client_identifier},
>> {67, bootfile_name},
>> {97, uuid_client_identifier},
>> + {119, domain_search},
>> {209, pxelinux_configfile},
>> {210, pxelinux_pathprefix},
>> {211, pxelinux_reboottime}
>> @@ -222,6 +357,7 @@ void parse_dhcp_options(...