HomeAgent6.ned

NED File src/inet/node/xmipv6/HomeAgent6.ned

Name Type Description
HomeAgent6 compound module

IPv6 router configured to operate as a Home Agent in a network supporting MIPv6.

Source code

//
// Copyright (C) 2007 Faqir Zarrar Yousaf
// Communication Networks Institute, University of Dortmund
// [email protected]
//
// SPDX-License-Identifier: LGPL-3.0-or-later
//
//

package inet.node.xmipv6;

import inet.node.ipv6.Router6;

//
// IPv6 router configured to operate as a Home Agent in a network supporting MIPv6.
//
module HomeAgent6 extends Router6
{
    ipv6.xMIPv6Support = true;
    ipv6.mipv6support.isMobileNode = false; //is Mobile Node
    ipv6.mipv6support.isHomeAgent = true; //is Home Agent
}