to get the RSS feed for a specific forum you must first turn on the external.php option in your admincp via vb options. then to include a link to the forum's RSS feed by simply including this url in the forumdisplay template:
HTML Code:
<a href="$vboptions[bburl]/external.php?type=RSS&f=$foruminfo[forumid]">$foruminfo[title] RSS</a>
also for others who want to take this is a step further and allow some browsers to pick your RSS feed up automatically include this line in the forumdisplay template header
HTML Code:
<link rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - $foruminfo[title]" href="$vboptions[bburl]/external.php?type=RSS&f=$foruminfo[forumid]" />