blob: 705ad88f5b96ce5d463c3f712579ef15c84968d1 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.server.dhcp.options.perinterface;
import org.apache.directory.server.dhcp.options.DhcpOption;
/**
* This option specifies a list of static routes that the client should
* install in its routing cache. If multiple routes to the same
* destination are specified, they are listed in descending order of
* priority.
*
* The routes consist of a list of IP address pairs. The first address
* is the destination address, and the second address is the router for
* the destination.
*
* The default route (0.0.0.0) is an illegal destination for a static
* route. See section 3.5 for information about the router option.
*
* The code for this option is 33. The minimum length of this option is
* 8, and the length MUST be a multiple of 8.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class StaticRoute extends DhcpOption
{
/*
* @see org.apache.directory.server.dhcp.options.DhcpOption#getTag()
*/
public byte getTag()
{
return 33;
}
}