| View previous topic :: View next topic |
| Author |
Message |
ottyscom
Joined: 02 Sep 2008 Posts: 2
|
Posted: Tue Sep 02, 2008 10:11 am Post subject: Separate listener limits for diferent mountpoints |
|
|
Hello,
I use Icecast 2.3.1 on a Ubuntu 6.06 LTS Server. In the config file are an option for diferent mount configuration but it not work. I will separate every mountpoint to a diferent user and password and limit the listeners on every mountpoint. When i configure it on <mount> in the config file the mount and password will no work. Where is the Problem
What is the solution to can stream diferent streams with diferent listener limits and password for each them?
Thank you in advance for any solution or idea |
|
| Back to top |
|
 |
mj_martino
Joined: 15 Aug 2008 Posts: 21
|
Posted: Tue Sep 02, 2008 2:44 pm Post subject: |
|
|
| Code: |
<mount>
<mount-name>/yourmount</mount-name>
<password>your passw</password>
<max-listeners>6</max-listeners>
</mount>
<mount>
<mount-name>/yourmount2</mount-name>
<password>another your passw</password>
<max-listeners>10</max-listeners>
</mount>
....more more
|
this simple code
If you want authorization for two diferent mount pleas check documentation http://www.icecast.org/docs/icecast-2.3.1/icecast2_listenerauth.html or wait for answer Karl  |
|
| Back to top |
|
 |
ottyscom
Joined: 02 Sep 2008 Posts: 2
|
Posted: Wed Sep 03, 2008 7:57 am Post subject: |
|
|
Yes i know but it doesn't work
Here i put my code.
| Code: |
<icecast>
<limits>
<clients>200</clients>
<sources>10</sources>
<threadpool>5</threadpool>
<queue-size>524288</queue-size>
<client-timeout>30</client-timeout>
<header-timeout>15</header-timeout>
<source-timeout>10</source-timeout>
<burst-on-connect>1</burst-on-connect>
<burst-size>65535</burst-size>
</limits>
<authentication>
<source-password>password0</source-password>
<relay-password>password0</relay-password>
<admin-user>admin</admin-user>
<admin-password>password0</admin-password>
</authentication>
<hostname>localhost</hostname>
<listen-socket>
<port>8077</port>
</listen-socket>
<mount>
<mount-name>/yourmount1</mount-name>
<password>password1</password>
<max-listeners>1</max-listeners>
</mount>
<mount>
<mount-name>/yourmount2</mount-name>
<password>password2</password>
<max-listeners>10</max-listeners>
</mount>
|
When i would like to stream with the mount yourmount1 and use the password: password1 the say "invalid password. Authentication required (401)"
Who is the problem? Is this a Problem for the version 2.3.1?
I don't know how can i update to version 2.3.2 in ubuntu.
[/code] |
|
| Back to top |
|
 |
karlH Code Warrior

Joined: 13 Jun 2005 Posts: 5476 Location: UK
|
Posted: Wed Sep 03, 2008 1:12 pm Post subject: |
|
|
While we do recommend updating to 2.3.2, you shouldn't have a problem with 2.3.1 in this regard. Check your log files, make sure the logging in source mountpoint matches what you think it is..
karl. |
|
| Back to top |
|
 |
|