System and method for server network configuration and addressing

Information

  • Patent Application
  • 20030163523
  • Publication Number
    20030163523
  • Date Filed
    February 19, 2003
    21 years ago
  • Date Published
    August 28, 2003
    20 years ago
Abstract
A system and method for supporting multiple network interface cards, network addresses, or ports for a single instance of a server, such as an application server. The benefits of this are realized in various areas such as traffic isolation, traffic prioritization, network redundancy, and application segregation or virtual host support. Another benefit is the ability to allow multiple servers in a cluster to listen on the same address by using different ports. The system supports logical isolation, by allowing a server to listen on multiple ports; and physical isolation, by allowing a server to listen on multiple IP addresses.
Description


COPYRIGHT NOTICE

[0002] A portion of the disclosure of this patent document contains material which is subject to copyright protection. The copyright owner has no objection to the facsimile reproduction by anyone of the patent document or the patent disclosure, as it appears in the Patent and Trademark Office patent file or records, but otherwise reserves all copyright rights whatsoever.



FIELD OF THE INVENTION

[0003] The invention is related to a system and method for server network configuration and addressing that allows for supporting multiple network interface cards with a single instance of a server.



BACKGROUND

[0004] Current Java-based application server implementations have a singleton implementation for network connectivity in the Remote Java Virtual Machine (RJVM) layer. This restriction forces the server to only communicate over a single Network Interface Card (N IC) and also forces all traffic in the same Quality of Service (QOS) level (e.g. t3, http, and IIOP)to share a single port. This causes problems with being unable to adequately isolate or prioritize traffic, a desirable goal in such distributed environments. The requirement of having to use a single NIC also causes problems in having little support for network redundancy.



SUMMARY

[0005] The invention allows for supporting multiple network interface cards (NIC) for a single instance of a server, such as for example a WebLogic server. The benefits of this are realized in various areas such as traffic isolation, traffic prioritization, network redundancy, and application segregation (virtual host support). Another benefit is the ability to allow multiple servers in a cluster to listen on the same address by using different ports. This work is intended to enable logical isolation, by allowing a server to listen on multiple ports; and physical isolation, by allowing a server to listen on multiple IP addresses. Although the invention is described primarily with respect to WebLogic server (WLS) examples, it will be evident to one skilled in the art that the teachings herein may be applied to other server types and server implementations.







BRIEF DESCRIPTION OF THE DRAWINGS

[0006]
FIG. 1 shows an illustration of a server having multiple channels in accordance with an embodiment of the invention.







DETAILED DESCRIPTION

[0007] The invention described herein focuses on lower layer functionality, specifically the RJVM level, to abstract out the relationship between the server and the physical networking characteristics of the server. In the context of this document, the terms server and RJVM are used interchangeably. For client to server and server-to-server communications we are talking about the RJVM. For configuration NAP and channel we are talking about the server. Some special cases such as using an URL to establish connection we will discuss it separately.


[0008] The current WebLogic server, for example, has a singleton implementation for network connectivity in the RJVM layer. This restriction forces the server to only communicate over a single NIC. All traffic in the same QOS level (e.g. t3, http, and IIOP) must share a single port. To take advantage of the hardware resources such as multi-homed configuration, application servers developed in accordance with the invention do not suffer from these limitations. In accordance with the invention, a new layer beneath RJVM is added to take advantage of the multi-homed configuration by allowing controlled communication over multiple NICs and allowing protocols to share or exclusively own one or more NAPs. Multiple servers can be deployed in a cluster on a single IP machine by using different parts for each server.


[0009] Introduction


[0010] A server is like a location off of a highway. A “Channel” can be thought of as a highway and a “Network Access Point” (NAP) as an on-ramp on that highway. To link two locations, they both need to share a channel. A NAP is optional, and is used by a server to over-ride channel settings on a per server basis. A server may access multiple channels and multiple NAPs. No two NAPs on the same server may refer to the same channel. For interoperability reasons, the network related fields from previous versions continue to be supported. In this document, these legacy fields are referred to as the “default channel” and the “default admin channel”.


[0011]
FIG. 1 shows an example of a multiple channel configuration in accordance with an embodiment of the invention. In the example shown in FIG. 1, a plurality of servers: server 1, server 2, and server 3, are shown; communicating with one another over a plurality of channels: channel A, channel B, and channel C. The servers serve a plurality of clients. In this example channel A is configured for traffic with connections in the in-bound direction only (i.e. OutgoingEnabled=False), and is effectively being used as an edge channel for server 1, server 2, and server 3. Channel B is a common channel between server 1 and server 3. Channel C is a common channel between server 2 and server 3. Depending on the implementation, multiple IP addresses can be used on each machine, and/or alternatively a single IP address can be used with multiple ports.


[0012] Configuration Suitability


[0013] Configuring multiple servers in a cluster with differing listen ports may not be suitable for some configurations. Production configurations sometimes take advantage of DNS round-robin or hardware load balancing. These techniques require that all servers set their ports to be the same. This is because the load balancer chooses a target server based on address not on port. Among other added capabilities, the invention provides the ability for multiple servers within the same cluster to listen on the same listen address but at different ports. This is accomplished by configuring a multicast port on the cluster mbean. Previously, a cluster's multicast port was inferred by each individual server's listen port, which forced each server to configure the same listen port in order to participate in a cluster. Setting the cluster multicast port allows servers to participate in a cluster despite having different listen ports. This in turn allows multiple servers in a cluster to share the same listen address, as now they will not collide attempting to use the same port on the same listen address.


[0014] Internally Constructed URLs


[0015] Internally constructed URLs limit network partitioning of server to server traffic. Multiple locations within the server code “manually” construct server URLs for purposes such as replication, JDBC operation, admin server operation, and JTA operation. These URLs will continue to depend on the listen port of the “default channel” and “default admin channel” (describe below). The side effects of this are: internal traffic may not take advantage of configured channels, which limits partitioning of server-to-server network traffic; and, servers cannot be configured without at least one plain text port.


[0016] In describing the invention, we concentrate herein on “client cases”, where URLs are passed to a client for purposes of reconnecting back into an application. An example of this is EJB home handles. An issue here is how to ensure URLs are properly downgraded when new servers pass them back to older clients. The new server field, ServerMBean.DefaultURLLocalAddress, partially mitigates the issue of traffic isolation. It forces all new connections initiated on a server via an URL to bind to a local address. This setting is less flexible than a channel based solution that could partition traffic across multiple local IP addresses rather than just one.


[0017] 1. Network Address Point (NAP)


[0018] In traditional server mechanisms, a single ServerMBean defines:


[0019] A value for setting up a single port to accept incoming connection requests for T3, HTTP, IIOP and HTTP tunneling for T3.


[0020] A flag to disable HTTP tunneling for T3.


[0021] Optionally defines a value for setting up a different port to accept incoming connection requests for T3S, HTTPS, IIOPS and HTTPS tunneling for T31.


[0022] Optionally defines a value for setting up another different port to accept incoming connection requests for Admin traffic.


[0023] Some of the configuration fields are shared among all of the port setup such as login timeout and accept backlog, and other fields may apply to the NIC hosting those ports such as the external DNS name. To support a maximum of three ports over a single NIC, a single ServerMBean may not be too bad. However, to support multiple NICs with the potential for a sizable amount of ports on each NIC a single ServerMBean does not scale for the job. Also, fine-tuning for each port is not possible using a single ServerMBean. For this reason the notion of network access points (NAPs) and channels are introduced.


[0024] A NAP is the network resource on which the server will listen to conduct network communication by accepting the incoming TCP/IP connection request. A WebLogic server may have multiple NAPs. A NAP defines a set of listen ports and a single listen address which, when combined, specify a network access point that is unique to exactly one server. The NAP listen address also defines which NIC to use in a multi-home system (i.e. it used for the TCP/IP bind address).


[0025] A NAP encapsulates all the information for the port setup to a single entity. Each NAP must specify a channel. While a server may have multiple NAPs, no two NAPs on the same server may reference the same channel. Much of the defaults for NAP settings are tunable in the channel. Configuration at the channel layer allows uniform settings to apply to all member NAPs. A NAP may fine-tune (over-ride) most channel settings, but may not disable any protocol or QOS the channel supports. A server may have multiple channels targeted at it, but NAPs are not needed to listen on these channels. A NAP is not needed if there is no attribute in the channel that needs to be fine-tuned at the server level.


[0026] Each NAP port has a dedicated thread listening on it (ListenThread). The NAP not only specifies the network resource that a server uses for listening, but also implicitly specifies how the server initiates outgoing connection requests for its channel. However, to facilitate NAPs that are intended for serving incoming traffic only (such as an http port), the channel has a flag for disabling NAPs from using it for initiating outgoing connections.


[0027] By default, the NAP listen address is used for the TCP/IP local (NIC) address when a server is initiating contact with a remote server. This can be disabled at the channel level. The benefits of defining an outgoing address in a multi-homed situation is that it allows directing the traffic going out to a particular network served by a particular NIC and also from the security viewpoint, such as firewalls which sometime want to filter IP traffic not just by destination IP but also by source IP.


[0028] The NAP listen address optionally does double duty as the outgoing address to simplify configuration and to make it more intuitive. In future releases the option is open to allow the outgoing address and port to be specified separately.


[0029] NetworkChannel


[0030] This attribute is a reference to a valid channel to which this NAP is attached. If a valid channel is not supplied the NAP will be ignored and a log message will be generated.


[0031] ListenAddress


[0032] The ListenAddress has the same syntax and semantics as the ListenAddress in the existing ServerM Bean except that it applies to the NAP, not the ServerMBean. If not specified then the listen address from the ServerMBean is used. If neither the NAP or the server mbean supply a listen address, the loopback address (localhost address) will be used.


[0033] ListenPort/SecureListenPort


[0034] If specified, these settings override their values from the network channel. If the channel does not enable the port in question, the same field in the NAP is ignored. If not specified, then the NAP will inherit the value from the channel. Changing these values allows configurations of multiple servers listening on the same listen address. These values can be designed to have the same syntax and semantics as similar fields in the current server implementation. For example, in the context of WLS, the ListenPort has the same syntax and semantics as the ListenPort in the existing ServerMBean except that it applies to the NAP, not the ServerMBean. Similarly, the SecureListenPort maps to the ListenPort in the SSLMBean.


[0035] The ExternalDNSName


[0036] The ExternalDNSName has the same syntax and semantics as the External DNSName in the existing ServerMBean except that it applies to the NAP not the ServerMBean. This DNS name is the current singleton DNS name that is placed in the JVMID, the JVMID will now have a DNS name per NAP. It is only used for constructing http sessions. If the ExternalDNSName is not set, the ListenAddress is used in its place.


[0037] Fine-tuning Fields


[0038] LoginTimeoutMillis


[0039] LoginTimeoutMillisSSL


[0040] AcceptBacklog


[0041] TunnelingClientPingSecs


[0042] TunnelingClientTimeoutSecs


[0043] MaxT3MessageSize


[0044] MaxHTTPMessageSize


[0045] MaxIIOPMessageSize


[0046] CompleteT3MessageTimeout


[0047] CompleteHTTPMessageTimeout


[0048] CompleteIIOPMessageTimeout


[0049] IdleIIOPConnectionTimeout


[0050] DefaultIIOPPassword/DefaultIIOPUser


[0051] If specified, these settings override their values from the network channel. If the channel does not enable the port in question, the same field in the NAP is ignored. If not specified, then the NAP will inherit the value from the channel.


[0052] External Software Interfaces


[0053] The following attributes are in the NetworkAccessPointMBean. A ServerMBean may reference zero or more NetworkAccessPointMBeans.
1AttributeDefaultValid ViewsDynamicAttachedChannelNoneA not empty StringFalseListenAddressNullHost name or dotted-Falsestring of a IP addressNull: get it fromServerMBeanListenPort−1−1: get it from channelFalse1 to 65534SSLListenPort−1−1: get it from channelFalse1 to 65534ExternalDNSNameNoneNoneFalseStringLoginTimeout-−1−1: get it from channelTrueMillis0: disable1 to 100000LoginTimeout-−1−1: get it from channelTrueMillisSSL0: disable1 to 100000AcceptBacklog−1−1: get it from channelFalse1 to 2 {circumflex over ( )}31 −10 ?TunnelingClient-−1−1: get it from channelFalsePingSecs1 to 2{circumflex over ( )}31 −10 ?TunnelingClient-−1−1: get it from channelFalseTimeoutSecs1 to 2{circumflex over ( )}31 −10 ?MaxT3MessageSize−1−1: get it from channelTrue1 to 2{circumflex over ( )}32 −1MaxHTTPMessageSize−1−1: get it from channelTrue1 to 2{circumflex over ( )}32 −1MaxIIOPMessageSize−1−1: get it from channelTrue1 to 2{circumflex over ( )}32 −1CompleteT3Message-−1−1: get it from channelTrueTimeout0: wait indefinitely1 to 2{circumflex over ( )}32 −1CompleteHTTP-−1−1: get it from channelTrueMessageTimeout0: wait indefinitely1 to 2{circumflex over ( )}32 −1CompleteIIOP-−1−1: get it from channelTrueMessageTimeout0: wait indefinitely1 to 2{circumflex over ( )}32 −1IdleIIOPConnection-−1−1: get it from channelTrueTimeout0: wait indefinitely1 to 2{circumflex over ( )}32 −1DefaultIIOPuserNullnull: get it from channelFalsestring: default IIOP userDefaultIIOPPasswordNullnull: get it from channelFalsestring: default IIOPpassword


[0054] 2. Channel


[0055] A channel can be thought of as a highway, and a NAP as an on-ramp on that highway. A channel is designed to allow simple configuration among multiple NAPs sharing the same kind of characteristics such as Port number, Timeout value, Protocol(s), etc. It also allows the server administrator to fine-tune the desired traffic flow among different protocols and/or different servers by ordering the target RJVM's NAPs in a preferred weighted list. A channel can be configured for inbound connections only, which is useful for edge servers. This allows configuring a separate channel just for accepting connections from clients but not from other servers. A channel can also restrict outgoing connections to be initiated from a specific NIC by using the local IP address associated with the local server's NAP. If a server has a NAP attached to a channel it is considered joined to the channel. No two NAPs on the same server may attach to the same channel. Each server can join multiple channels. Servers joining the same channel are considered to have a common channel.


[0056] To be compatible with previous server implementations/releases, embodiments of the invention may include backward compatible network related fields that are considered to be the “default channel”. In these embodiments, these fields may continue to be configured separately from regular channels to support the singleton-like ServerMBean configurations. All servers joining the default channel are also considered having the common channel. All servers must join the default channel.


[0057] The scope of a channel is independent of domains, clusters, or configuration files. A single configuration file may have 0 or more channels. Each channel must have a unique name.


[0058] A new connection to a remote RJVM is only established if there is no existing connection with the desired QOS or higher. Existing connections with a higher QOS are used when there is no existing connection with the desired QOS. New connections are established with the desired QOS, not higher. Tunneling and non-tunneling are considered to be the same QOS, so that if a tunneled connection is already available for the desired protocol that connection is used. The same is true for the reverse.


[0059] All servers will require specifying a default channel. The default channel minimally sets a listen port or a ssl listen port as is defined today. Many fields specified in the NAP/channel also exist in the default channel. Although they serve a similar purpose, they are not the same mbeans and do not generally inherit each-others values. In addition, the default channel fields are spread throughout three mbeans: SSLMBean, ServerMBean, and KernelMBean.


[0060] If a new server-to-server connection is warranted, and the desired protocol is supported by multiple channels, the server administrator has a way to break the tie. The administrator can increase a channel's “weight” to bias the choice towards that channel. A new server-to-server connection is established using only the channels common between them that support the desired protocol and QOS and that furthermore are marked “OutgoingEnabled”. Two channels match if and only if they have the same name and they have the same protocol and QOS settings. All channels are considered, this includes the default channel, the default admin channel, and configured channels. The remote server's default channel and admin channel are automatically considered to be common channels—even if they are not configured similarly locally. If there are multiple common channels, each is tried in turn until a successful connection occurs. The order that the channels are tried is based on their configured channel weight, where the default channel and default admin channel weights are always “50”. Unsuccessful connects cause a channel to be marked unreachable. Unreachable channels will not be retried until all common channels are marked unreachable.


[0061] A new client-to-server connection is established in a similar way to a new server-to-server connection. A client has no local channel information to match against the server information, so all server channels are considered common. The following attributes are associated with the channel via the NetworkChannelMBean. There may be zero or more NetworkChannelMBeans in a domain. A NetworkChannelMBean is associated with a server by targeting it at that server or targeting it at the cluster of which the server is a member.


[0062] Channel Name


[0063] The channel name is the name of the mbean. This is unique within a configuration.


[0064] ListenPort/SSLListenPort


[0065] These have the same syntax and semantics as the similar fields in the ServerMBean and SSLMBean.


[0066] ListenPort/SSLListenPortEnabled


[0067] These attribute indicate whether or not the given port is enabled or not. The default is false.


[0068] TunnelingEnabled


[0069] This attribute indicates whether or not tunneling is supported. The default is false.


[0070] (T3|IIOP|HTTPD)[s]Enabled


[0071] This attribute indicates the protocols supported by this channel. The default is false. If all are false, the channel is ignored. Note that even if HTTPD is set to false it may still support the HTTP protocol if isIgnoringHttpdEnabled is true on the WebAppServletContext.


[0072] OutgoingEnabled


[0073] If OutgoingEnabled is true, then this channel will be considered when constructing an outbound connection. The default is true. This is not configurable on the default channel and the default admin channel. For these, it is always true.


[0074] BoundOutgoing


[0075] If true, then a new outgoing connection has to bind to the same IP address as the local NAP in the same channel from the same server. If false, the native OS will select an IP address to bind to. The default is false. (The default is false to correspond with current behavior).


[0076] ChannelWeight


[0077] This attribute is the channel weight value for the channel with higher value preferred. If not specified, then a default value of 50 will be assigned.


[0078] Additional Network Settings


[0079] The following channel mbean settings have the same semantics, default values, and ranges as the same named fields in the default channel's mbeans: ServerMBean, KernelMBean, and SSLMBean.


[0080] LoginTimeoutMillis


[0081] LoginTimeoutMillisSSL


[0082] AcceptBacklog


[0083] TunnelingClientPingSecs


[0084] TunnelingClientTimeoutSecs


[0085] MaxT3MessageSize


[0086] MaxHTTPMessageSize


[0087] MaxIIOPMessageSize


[0088] CompleteT3MessageTimeout


[0089] CompleteHTTPMessageTimeout


[0090] CompleteIIOPMessageTimeout


[0091] DefaultIIOPUser


[0092] DefaultIIOPPassword


[0093] IdleIIOPConnectionTimeout


[0094] External Software Interfaces


[0095] The following attributes are members of the NetworkChannelMBean
2Dy-AttributeDefaultValidViewsnamicNameNoneA not empty StringFalseChannelWeight501 to 100FalseListenPortEnabledFalse“true” or “false”FalseListenPort70011 to 65534FalseSSLListenPortEnabledFalse“true” or “false”FalseSSLListenPort70021 to 65534FalseTunnelingEnabledFalse“true” or “false”False(T3|IIOP|HTTP) [s] EnabledFalse“true” or “false”FalseOutgoingEnabledTrue“true” or “false”FalseBoundOutgoingTrue“true” or “false”FalseLoginTimeoutMillis50000: no timeoutTrue0 to 100000LoginTimeoutMillisSSL250000: no timeoutTrue0 to 2 {circumflex over ( )}31 −1AcceptBacklog500 to 2 {circumflex over ( )}31 −1FalseTunnelingClientPingSecs450 to 2 {circumflex over ( )}31 −1FalseTunnelingClientTimeoutSecs400 to 2 {circumflex over ( )}31 −1FalseMaxT3MessageSize100000004096 to 2{circumflex over ( )}32 −1TrueMaxHTTPMessageSize100000004096 to 2{circumflex over ( )}32 −1TrueMaxIIOPMessageSize100000004096 to 2{circumflex over ( )}32 −1TrueCompleteT3MessageTimeout600: waitTrueindefinitely1 to 480CompleteHTTPMessageTime-600: waitTrueoutindefinitely1 to 480CompleteIIOPMessageTime-600: waitTrueoutindefinitely1 to 480IdleIIOPConnectionTimeout600: waitTrueindefinitely1 to 2 {circumflex over ( )}32 −1DefaultIIOPUserNullnull: noneFalsespecifiedStringDefaultIIOPPasswordNullnull: noneFalsespecifiedstring


[0096] Implied Settings for Default Channels
3Default Channel SettingSourceListenPortEnabledServerMBean.isListenPortEnabled ()ListenPortServerMBean.getListenPort ( )SSLListenPortEnabledSSLMBean.isEnabled ( )SSLListenPortServerMBean.getSSL ( ) .getListenPort ( )TunnelingEnabledServerMBean.isTunnelingEnabled ( )T3EnabledNot configurable, fixed to true.HTTPEnabledServerMBean.isHttpdEnabled ( ) andServerMBean.isTunnelingEnabled ( ) (Notethat individual web apps may ignoreHttpdEnablevia the flag IgnoringHttpdEnabled.)IlOPEnabledServerMBean.isIIOPEnabled ( )T3SEnabledServerMBean.getSSL ( ) != nullHTTPSEnabledServerMBean.isHttpdEnabled ( ) andServerMBean.isTunnelingEnabled ( ) andServerMBean.getSSL ( ) != nullIIOPSEnabledServerMBean.isIIOPEnabled ( ) andServerMBean.getSSL ( ) != nullLoginTimeoutMillisServerMBean.getLoginTimeoutMillis ( )LoginTimeoutMillisSSLServerMBean.getSSL ( ) .getLoginTimeoutMillisOutgoingEnabledNot configurable, fixed to true.BoundOutgoingNot configurable, fixed to false.AcceptBacklogServerMBean.getAcceptBacklog ( )TunnelingClientPingSecsServerMBean.getTunnelingClientPingSecs( )TunnelingClientTimeout-ServerMBean.getTunnelingClientTimeout-SecsSecs ( )ChannelWeightNot configurable, fixed to 50.MaxT3MessageSizeKernelMBean.getMaxT3MessageSize ( )MaxHTTPMessageSizeKernelMBean.getMaxHTTPMessageSize ( )MaxIIOPMessageSizeKernelMBean.getMaxIIOPMessageSize ( )CompleteT3MessageTime-KernelMBean.getCompleteT3MessageTimeoutout ( )CompleteHTTPMessage-KernelMBean.getCompleteHTTPMessage-TimeoutTimeout ( )CompleteIIOPMessage-KernelMBean.getCompleteIIOPMessage-TimeoutTimeout ( )IdleIIOPConnectionTime-KernelMBean.getIdleIIOPConnectionTime-outout ( )DefaultIIOPUserServerMBean.getDefaultIIOPUser ( )DefaultIIOPPasswordServerMBean.getDefaultIIOPPassword ( )ListenAddress (NAP onlyServerMBean.getListenAddress ( )field)ExternalDNSName (NAPServerMBean.getExternalDNSName ( )only field)


[0097] Implied Settings for Default Admin Channels


[0098] The default admin channel fields are the same as the default channel fields, except for the ListenPort and SSLListenPort. Instead:


[0099] ListenPort is ignored.


[0100] SSLListenPort=ServerMBean.getAdministrationPort( )


[0101] SSLListenPortEnabled=ServerMBean.isAdministrationPortEnabled( )


[0102] The default admin channel exists if and only if the administration port is configured and the SSLMBean is configured.


[0103] Extended Server URL


[0104] In accordance with an embodiment of the invention, the URL and Context currently used today by clients to establish the initial connection to a WL server is extended to support multi-homed hosts and to support locating multiple WL servers listening on the same address but at different ports. The extended URL allows for different hosts listening on different ports and for specifying ranges of ports. Port ranges simplify the URL syntax for URLs that reference a set of hosts that all listen on the same address but on “adjacent” ports.
4port =[0-9] +portSet =portRange (+portRanqe)?portRange =port (−port)?host =(ip-address) | (host-name)protocol =(http|iiop|t3)s?currentNAP =host (,host) * (:port)?currentURL =(protocol://)?currentNAPextendedNAP =host (,host) * (:portSet?)?extendedURL =(protocol://)?extendedNAP (,extendedNAP) *


[0105] The port used for a particular host is the one that follows. If no port is specified, a default port is used. A port range, designated using a ‘−’ sign, takes precedence over a port set, designated using a ‘+’ sign. For example, given that t3 is the default protocol and that 7001 is the default port, the following three URLs are equivalent:


[0106] t3://host1:7001-7004,host2:7001


[0107] t3://host1:7001+7002-7004,host2:7001


[0108] host1:7001,host1:7002,host1:7003-7004,host2


[0109] host1:7002-7004,host1,host2


[0110] The following URLs are equivalent but not equivalent to the above:


[0111] host1,host2,host1:7002-7003


[0112] host1,host2:7002-7003


[0113] 3. ServerMBean


[0114] The invention adds two new fields into the ServerMBean to reflect the new functions. Some existing ServerMBean fields are used for the default channel and default admin channel setup.


[0115] DefaultURLLocalAddress


[0116] This is the default local address used for new Contexts that are establishing their connection to a remote server. It supplements a URL by specifying which local address, and therefore which NIC, to which to bind. By default, this value is not specified, indicating that the O/S is responsible for choosing a local address. This value applies to both internally generated and application generated contexts that are used for connecting to remote servers when channel information is not available.


[0117] NetworkAccessPointMBeans


[0118] This is an array of NetworkAccessPointMBeans that each reference a NetworkChannelMBean. They are optional.


[0119] ListenPortEnabled/AdministrationPortEnabled


[0120] These attribute indicate whether or not the given port is enabled or not. The default for ListenPortEnabled is true and for AdministrationPortEnabled is false.


[0121] External Software Interfaces


[0122] The following attributes are new to the ServerMBean:
5AttributeDefaultValid ValuesDynamicDefaultURLLocalAddressNone.Hostname or IP orFalseDNSNameNetworkAccessPointMBeansNoneAn array of networkFalseaccess point mbeansThese are not sharedbetween servers.ListenPortEnabledTrue“true” or “false”FalseAdministrationPortEnabledFalse“true” or “false”False


[0123] The present invention may be conveniently implemented using a conventional general purpose or a specialized digital computer or microprocessor programmed according to the teachings of the present disclosure. Appropriate software coding can readily be prepared by skilled programmers based on the teachings of the present disclosure, as will be apparent to those skilled in the software art.


[0124] In some embodiments, the present invention includes a computer program product which is a storage medium (media) having instructions stored thereon/in which can be used to program a computer to perform any of the processes of the present invention. The storage medium can include, but is not limited to, any type of disk including floppy disks, optical discs, DVD, CD-ROMs, microdrive, and magneto-optical disks, ROMs, RAMs, EPROMs, EEPROMs, DRAMs, VRAMs, flash memory devices, magnetic or optical cards, nanosystems (including molecular memory ICs), or any type of media or device suitable for storing instructions and/or data.


[0125] The foregoing description of the present invention has been provided for the purposes of illustration and description. It is not intended to be exhaustive or to limit the invention to the precise forms disclosed. Many modifications and variations will be apparent to the practitioner skilled in the art. Particularly, it will be evident that while the examples described herein illustrate how the invention may be used in a WebLogic environment, other application server environments may use and benefit from the invention. The embodiments were chosen and described in order to best explain the principles of the invention and its practical application, thereby enabling others skilled in the art to understand the invention for various embodiments and with various modifications that are suited to the particular use contemplated. It is intended that the scope of the invention be defined by the following claims and their equivalence.


Claims
  • 1. A system for server network configuration and addressing that allows multiple network access points to be associated with a single instance of a server, comprising: a computer device or machine that includes at least one server operating thereon; a software interface layer that includes a communications channel between said server and other servers and/or clients; and, a network access point associated with said server, and with one of said plurality of channels, that specifies the address of said server on a particular channel, and allows communication between said server and other servers, or between said server and a plurality of clients on the network.
  • 2. The system of claim 1 wherein multiple servers can be deployed within a cluster on a computer device or machine having a single network or Internet protocol address, using different parts of the network address point for each server.
  • 3. The system of claim 1 wherein the server is an application server.
  • 4. The system of claim 1 wherein the software interface layer includes a single channel.
  • 5. The system of claim 1 wherein the software interface layer includes a plurality of channels.
  • 6. The system of claim 1 wherein multiple ports can be associated with the server.
  • 7. The system of claim 1 wherein multiple network addresses and/or internet protocol addresses can be associated with the server.
  • 8. The system of claim 1 wherein a plurality of network interface cards can be associated with the server.
  • 9. The system of claim 1 wherein the system includes a plurality of servers operating on the computer device or machine.
  • 10. The system of claim 1 wherein the system includes a plurality of servers operating on multiple computer devices or machines.
  • 11. A method for server network configuration and addressing that allows multiple network access points to be associated with a single instance of a server operating on a computer device or machine, comprising the steps of: providing a software interface layer that includes a communications channel between said server and other servers and/or clients; and, associating a network access point with said server, and with one of said plurality of channels, that specifies the address of said server on a particular channel, and allows communication between said server and other servers, or between said server and a plurality of clients on the network.
  • 12. The method of claim 11 wherein multiple servers can be deployed within a cluster on a computer device or machine having a single network or Internet protocol address, using different parts of the network address point for each server.
  • 13. The method of claim 11 wherein the server is an application server.
  • 14. The method of claim 11 wherein the software interface layer includes a single channel.
  • 15. The method of claim 11 wherein the software interface layer includes a plurality of channels.
  • 16. The method of claim 11 wherein multiple ports can be associated with the server.
  • 17. The method of claim 11 wherein multiple network addresses and/or internet protocol addresses can be associated with the server.
  • 18. The method of claim 11 wherein a plurality of network interface cards can be associated with the server.
  • 19. The method of claim 11 wherein the system includes a plurality of servers operating on the computer device or machine.
  • 20. The method of claim 11 wherein the system includes a plurality of servers operating on multiple computer devices or machines.
CLAIM OF PRIORITY

[0001] This application claims priority from provisional application “SYSTEM AND METHOD FOR SERVER NETWORK CONFIGURATION AND ADDRESSING” Application No. 60/359,132 filed Feb. 22, 2002, and which application is incorporated herein by reference.

Provisional Applications (1)
Number Date Country
60359132 Feb 2002 US