- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Since change the configuration of Net of the serve...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-07-2005 12:12 AM
тАО09-07-2005 12:12 AM
IP - 192.168.1.100
Network_MASK 255.255.255.0
Broadcast_mask 192.168.1.255
In the net there are other computers with the same IP's range 192.168.1.xxx that execute across KEA an application in the server.
Now I need that another group of computers with IP's ranhe 192.6.21.xxx access across KEA to this server.
I have test to changing the subnet of the servant to 255.0.0.0 of a following way
Ucx set interface WE0/network_mask = 255.0.0.0
But I do not achieve that the computers access to the server. Also I have seen that if I restart the server the modification itdisappears.
Can someone indicate me like do this change?
Thank you
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-07-2005 12:32 AM
тАО09-07-2005 12:32 AM
Re: Since change the configuration of Net of the server?
@SYS$STARTUP:TCPIP$CONFIG
(or UCX$CONFIG if UCX V4.x)
option 1 core environment
option 4 interfaces
and follow the prompts. Restart TCP or reboot afterward
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-07-2005 12:34 AM
тАО09-07-2005 12:34 AM
Re: Since change the configuration of Net of the server?
Try with the ucx configuration utility:
$ @SYS$MANAGER:UCX$CONFIG
Select the "4 - interfaces" option and reconfigure the interface.
You can access the VMS also if you have a router which will do the routing. You have to setup the routes using UCX SET ROUTE /PERMANENT. See UCX HELP SET ROUTE.
Bojan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-07-2005 12:21 PM
тАО09-07-2005 12:21 PM
SolutionYou can try to use multiple addresses on the same interface.
Obtain an address in the 192.6.21.0/24 subnet, say 192.6.21.100/24. Then
$ ifconfig we0 192.6.21.100/24
Make sure both the oringal address 192.168.1.100 and the new address 192.6.21.100 are configured on we0 with the command.
$ ifconfig -a
Then check the routing table.
$ netstat -rn
The routing table should have a route for 192.168.1/24 and a route for 192.6.21/24 both going out we0.
Thanks and regards.
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-08-2005 04:35 AM
тАО09-08-2005 04:35 AM
Re: Since change the configuration of Net of the server?
The reason is simple:
client in 192.6.21.xxx network with netmask 255.255.255.0 send socket to 192.168.1.100 at its gateway, not directly to host, even fi both hosts are on same physical network.
Antonio Vigliotti