I want to draw the following picture:
But, I can only draw a part of it.
My codes:
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[scale=0.6]
\foreach \i in {0,60,...,330}{
\draw (\i:3.4) circle (1.7);
}
\draw (0,0) circle (5.1);
\end{tikzpicture}
\end{document}
How to complete the figure?



\foreach. – Sigur Aug 19 '17 at 21:46