I have already drawn a graphic function that isn't defined at -3 and -2. But somehow, I tried to draw the vertical asymptote, x=-3 and x=-2, then I get stuck. As I know, the \addplot is used to draw f(x), not f(y). Anybody can help me?
\documentclass{report}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
axis lines = left, axis x line= center,
axis y line= center,
xlabel = $x$, ylabel = {$f(x)$},
xmajorgrids=true, ymajorgrids=true,
restrict y to domain=-50:50,
ymin=-40, ymax=40,]
\addplot[
samples=500, color=red, thick]
{(x-1)/(x^2+5*x+6)};
\addplot[
samples=100, color=blue, thin, dashed]
% {???}; <= how can I get the x=-3 line?
\end{axis}
\end{tikzpicture}
\end{document}

