• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

WSS port changed need DNS to foward to it

pollardhimself

Senior member
Ive change the WSS sever port to 81 I want it to find away foward the request for example "local.sharepoint.com" to http://per510:81/ so you will not have to type the port. Ive tired editing the host file of the server but have had no success

Host file
Code:
# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
#      102.54.94.97     rhino.acme.com          # source server
#       38.25.63.10     x.acme.com              # x client host

# localhost name resolution is handled within DNS itself.
#    127.0.0.1       localhost
#    ::1             localhost
#    192.168.1.2:81  local.sharepoint.com
 
Remove the hash symbol in front of the 192.168.. address. The hash symbol denotes a comment which are ignored when windows is parsing your hosts file.
 
You already have, the port number is the number after the colon

Solution found for anyone with my issue

gave my network card another ip address under advanced options so it has two

20100506170908.png



specified that second interface under bindings in iis
20100506170750.png




added it to my local host file
C:\Windows\System32\drivers\etc


Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
# 102.54.94.97 rhino.acme.com # source server
# 38.25.63.10 x.acme.com # x client host

# localhost name resolution is handled within DNS itself.
# 127.0.0.1 localhost
# ::1 localhost
192.168.1.3 local.sharepoint.com
 
Last edited:
Back
Top