訂正しますね。
自分で設定してみました。
デフォルテでポート8000になってますので、8000を使用するのならそのまま変更しなくてもいけます。
ただご心配であるのなら以下のように設定してみてください。
<!-- This config file contains a minimal set of configurable parameters,
and mostly just contains the things you need to change. We created
this for those who got scared away from the rather large and heavily
commented icecast.xml.dist file. -->
<icecast>
<limits>
<sources>2</sources>
<!-- burst 関連項目はサーバーとリスナーとの遅延(ラグ)に関係します -->
<!-- burst-size のdefaultは65535 ですがこの値を減らすことによってラグが減るようです-->
<burst-on-connect>1</burst-on-connect>
<burst-size>4400</burst-size>
</limits>
<authentication>
<!-- souce-password と admin-passwordを変更します -->
<!-- ※souce-password ・・・ oddcastdspやshoutcastdspからicecast2へデータを送る時のパスワード-->
<!-- ※admin-password ・・・ リスナー表示・メタ情報修正等をweb上で行う時のパスワード-->
<source-password>hackme</source-password>
<relay-password>hackme</relay-password>
<admin-user>admin</admin-user>
<admin-password>hackme</admin-password>
</authentication>
<!-- yellow page -->
<!--
<directory>
<yp-url-timeout>15</yp-url-timeout>
<yp-url>http://dir.xiph.org/cgi-bin/yp-cgi</yp-url>
</directory>
-->
<!-- hostnameには外部IPアドレス or DDNS名を設定します -->
<!-- localhostのままでも放送できますが、ステータスページの再生リンクでは放送が開始しません -->
<hostname>localhost</hostname>
<listen-socket>
<!-- port には使用するポートを設定します -->
<!-- oddcastdsp や shoutcastdspのポートを同一に設定してください -->
<port>8000</port>
</listen-socket>
<fileserve>1</fileserve>
<paths>
<logdir>./logs</logdir>
<webroot>./web</webroot>
<adminroot>./admin</adminroot>
<alias source="/" dest="/status.xsl"/>
</paths>
<logging>
<accesslog>access.log</accesslog>
<errorlog>error.log</errorlog>
<loglevel>3</loglevel> <!-- 4 Debug, 3 Info, 2 Warn, 1 Error -->
</logging>
</icecast>
以上です。
がんばってくださいね。